Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hola
Tengo este problema cuando conecto PBI con API Rest usando Web.contents()
No entiendo lo que pasó. Alguien puede explicarme ?
Aquí mi código :
let
Source = Json.Document(Web.Contents("xxx",
[
RelativePath = "xxx",
Content=Text.ToBinary(""),
Headers=[#"Content-Type"="application/json",
Authorization="Bearer xxx"
]
]))
in
Source
¡Gracias!
Solved! Go to Solution.
Hola @EPetit
Debe ser "Autorización" en Encabezados
let
Source = Json.Document(Web.Contents("xxx",
[
RelativePath = "xxx",
Content=Text.ToBinary(""),
Headers=[#"Content-Type"="application/json",
#"Authorization"="Bearer xxx"
]
]))
in
Source
Phil
Si respondí a su pregunta por favor marque mi post como la solución.
Si mi respuesta ayudó a resolver su problema, déle un kudos haciendo clic en Thumbs Up.
Proud to be a Super User!
Hola @EPetit
Debe ser "Autorización" en Encabezados
let
Source = Json.Document(Web.Contents("xxx",
[
RelativePath = "xxx",
Content=Text.ToBinary(""),
Headers=[#"Content-Type"="application/json",
#"Authorization"="Bearer xxx"
]
]))
in
Source
Phil
Si respondí a su pregunta por favor marque mi post como la solución.
Si mi respuesta ayudó a resolver su problema, déle un kudos haciendo clic en Thumbs Up.
Proud to be a Super User!
¿Está haciendo esto intencionalmente una solicitud POST?
¿Funciona la misma solicitud desde un sitio de prueba de API? Como https://reqbin.com/
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.