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

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

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
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.

Top Solution Authors
Top Kudoed Authors