March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Saludos,
Quiero conectarme al API de seguridad de Microsoft.
Tengo como referencia algunas documentaciones y algunos ejemplos de github, pero en todos me dice que que no tengo acceso.
Active roles de Security Adminsitrator y Global Reader en la cuenta con la que se inicia sesion durante la conexion.
Cree un APP, le di permisos en Graph, me inclui en el APP, pero sigo sin acceso.
SecurityAlert.Read.All
SecurityEvents.Read.All
SeurityIncident.Read.All
Adicionalmente trate de crear un Query con los datos de conexion del APP, pero al parecer PowerBI no los reconoce, hablo de usar el TenantID con el Secret Key.
Si tienen alguna documentacion o algun caso de conexion para ver los eventos de seguridad de Microsoft de un tenat y poder graficarlos, espero me puedan ayudar.
Links, Imagenes y Codigos de referencia.
LINKS de referencias.
https://learn.microsoft.com/es-es/defender-endpoint/api/api-power-bi
https://github.com/microsoft/MicrosoftDefenderForEndpoint-PowerBI/tree/master
ERROR AL CONECTARSE
CODIGO ALTERNO QUE NO FUNCIONA
let
// Función para obtener el token de acceso
GetAccessToken = () =>
let
TenantId = "your-tenant-id",
ClientId = "your-client-id",
ClientSecret = "your-client-secret",
TokenUrl = "https://login.microsoftonline.com/" & TenantId & "/oauth2/v2.0/token",
TokenData = [
client_id = ClientId,
client_secret = ClientSecret,
scope = "https://api.securitycenter.microsoft.com/.default",
grant_type = "client_credentials"
],
TokenResponse = Json.Document(Web.Contents(TokenUrl, [
Content = Text.ToBinary(Uri.BuildQueryString(TokenData)),
Headers = [#"Content-Type" = "application/x-www-form-urlencoded"]
])),
AccessToken = TokenResponse[access_token]
in
AccessToken,
// Obtener el token de acceso
AccessToken = GetAccessToken(),
// Realizar la solicitud a la API con el token de acceso
Query = "Machines?$filter=riskScore eq 'Medium' or riskScore eq 'High'",
Source = Json.Document(Web.Contents("https://api.securitycenter.windows.com/api/" & Query, [
Headers = [Authorization = "Bearer " & AccessToken]
])),
Data = Source
in
Data
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.