Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. 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/
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.