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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
felipehr
Regular Visitor

TOKEN NO VALIDADO O TIEMPO CUMPLIDO

Hola Comunidad,

Estoy trabajando con la version gratuita de Power BI desktop, intentando conectarme una API para la descarga de un archivo JSON.

Me compartieron el siguiente codigo que me esta arrojando el siguiente error:

 

felipehr_0-1678819503059.png

 

La consulta que ejecute fue la siguiente

 

let
token1 = "Basic " & Binary.ToText(Text.ToBinary("Demo:z5BI%OImmQ#2"), 0),
url = "https://adamchile.com/authenticar/",
body = "{ ""client_id"": ""****"", ""client_secret"": ""****"", ""grant_type"": ""****"", ""audience"":""****""}",

tokenResponse = Json.Document(Web.Contents(url,[Headers = [#"Content-Type"="application/json",#"Authorization"=token1], Content = Text.ToBinary(body) ] )),

BearerToken = "Bearer " & tokenResponse[access_token],

url_data = "https://madainqsol.com/listadoDeBodegas/",
File = Json.Document(Web.Contents(url_data,[Headers = [#"Content-Type"="application/json",#"Authorization"=BearerToken], Content = Text.ToBinary(body) ] )),

#"Convertido en tabla" = Record.ToTable(File) in #"Convertido en tabla"

 

 

Por favor si alguien me puede ayudar a revisar mi codigo 

 

Saludos

7 REPLIES 7
felipehr
Regular Visitor

Hello Jing,

The ir another way to check the BearerToken?

I only have one applied step in this new query i made

 

Regards

Felipe 

Hi @felipehr 

 

Can you open Advanced Editor of the new query and capture a screenshot or paste its M code here after removing sensitive information? From the current code you shared, you should have several steps "token1", "url", "body"... "Convertido en tabla". We need to know what's the query like currently. 

 

Best regards,

Jing

 

 

Hi Jing

This is the screen shot

 

Captura de pantalla 2023-03-21 100423.png

Thanks for your help

Felipe

 

Hi @felipehr 

 

Please remove the codes I have covered with grey rectangles. For those red-underlined strings, you need to provide valid values for them. If you don't know what to provide for them, you need to ask the API provider or the person who shares this code with you for these information. These information is required by the API for authentication. 

vjingzhang_0-1679466237655.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

Thanks Jing

I got the following error

Captura de pantalla 2023-03-23 102147.png

Please could you confirm I remove it right

Captura de pantalla 2023-03-23 090703.png

I left it like this

...

token1 = "Basic " & Binary.ToText(Text.ToBinary(), 0),
url = "https://adamchile.com/authenticar/",
body = "{ ""client_id"": , ""client_secret"": , ""grant_type"": , ""audience"":}",

 

 

Best regards

Felipe

 

 

This is the information i got about the API

https://madainqsol.com/Mada_APIs

 

Captura de pantalla 2023-03-23 163411.png

v-jingzhang
Community Support
Community Support

Hi @felipehr 

 

It seems the token is perhaps not valid. In Power Query Editor, there is a Query Settings pane at the right most side which has all steps listed in "APPLIED STEPS". Can you click on the "BearerToken" step or the "tokenResponse" step to check whether you get a token successfully at this step?

 

Best Regards,
Community Support Team _ Jing

 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors
Top Kudoed Authors