Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be 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

Reply
avillarroelk250
Frequent Visitor

Conexion hacia Api de Microsoft (app.security.microsoft.com)

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

avillarroelk250_0-1730470768420.png

CODIGO ALTERNO QUE NO FUNCIONA

avillarroelk250_1-1730470960838.png

 

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

0 REPLIES 0

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors