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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Pla31000
Regular Visitor

Get data from API with token

Hi,

I have a problem to connect a web source :

I have an URL with a token authentification that is refresh every days.

I'm able to recover datas if i put directly the token in my url , but i have some difficulties to connect with a dynamic parameter :

 

 

 

let
   url = "https://URL/token",
   body = "{""username"":""XXXX"",""password"":""XXXX""}",
   token = Json.Document(Web.Contents(url, [Headers=[#"Content-Type"="application/json"], Content=Text.ToBinary(body)])),
   TokenBin = Json.FromValue(token),
   TokenText = Binary.ToText(TokenBin),
   AccessTokenHeader = "bearer " & TokenText,
   localbusiness = Web.Contents("https://URL/localbusiness", [Headers=[Authorization=AccessTokenHeader]])
in
localbusiness

 

 

I notice that on the step where I try to convert the binary value to text, the text string change and make my token invalid.

How can I recover this token in dynamic ?

 

Thx

---------

Edit : 

 

I found a solution , it works for me :

Instead of using the header authorisation, I put directly the token in the url by using the Uri.BuildQuerryString function :

 

 

 

let
   url = "https://URL/token",
   body = "{""username"":""XXXX"",""password"":""XXXX""}",
   token = Json.Document(Web.Contents(url, [Headers=[#"Content-Type"="application/json"],Content=Text.ToBinary(body)])),
   TokenBin = Json.Document(token),
   tokentext = Uri.BuildQueryString(tokenBin),
   source = Web.Contents("https://URL/localbusiness?"&tokentext),
   localbusiness= Json.Document(source),
   in
localbusiness

 

 

 

Hopes it will help another.

 

0 REPLIES 0

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Kudoed Authors