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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
EiA
Frequent Visitor

RelativePath with Anonymous connection

Hi,

 

I am having issues when I try to combine Chris Webb's explanation on RelativePath with "Anonymous authentication" (works well when I use built in Power BI Basic authentication, and don't have to pass authentication in M)

 

When I pass this M code:

 

let
Source = Json.Document(Web.Contents("BaseURL", [RelativePath= #"DateParameter"],
[Headers=[Authorization=Text.Combine({"Basic ", AuthKeyParameter})]])),
#"Converted to Table1" = Record.ToTable(Source)
in
#"Converted to Table1"

 

I receive: "Expression.Error: 3 arguments were passed to a function which expects between 1 and 2.".

 

Anyone able to help? Thanks.

1 ACCEPTED SOLUTION
Vera_33
Resident Rockstar
Resident Rockstar

Hi @EiA 

 

You passed 3 arguments to Web.Contents...

let
Source = Json.Document(Web.Contents("BaseURL", 
    [
        RelativePath= DateParameter,
        Headers=[Authorization=Text.Combine({"Basic ", AuthKeyParameter})]
        
    ])),
#"Converted to Table1" = Record.ToTable(Source)
in
#"Converted to Table1"

View solution in original post

1 REPLY 1
Vera_33
Resident Rockstar
Resident Rockstar

Hi @EiA 

 

You passed 3 arguments to Web.Contents...

let
Source = Json.Document(Web.Contents("BaseURL", 
    [
        RelativePath= DateParameter,
        Headers=[Authorization=Text.Combine({"Basic ", AuthKeyParameter})]
        
    ])),
#"Converted to Table1" = Record.ToTable(Source)
in
#"Converted to Table1"

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors