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
JoseJunior22
New Member

Power BI message- M Language - Failure to Request a json service API -

Hi, people. I really need a helping hand, since i've been trying to solve this problem for one week, but it seems to be impossible to get it alone. The question is: this "M" code (below) makes a https connection to an endpoint. It runs fine until the step which receives the token finhishes: the authentication process is running well so far. Unfortunatelly, aftter this previous step, when i call a JSON service by the second time, the Power BI show the message: "Specify how to connect". So, Power BI shows me a window to choose the authentication method to allow the conection. Then, I select the anonymous option. After that, Power BI shows me another  message box; "it's not possible to authenticate with the credencials".  The problem seems to be at the urlRequest object. Any help would be very apreciated! Thanks in advance, José. 

 

Here is the M code:

 

let
body = "{
""grant_type"" : ""client_credentials""
}",

minhaURL = "https://api.anbima.com.br/oauth/access-token",
getToken = Json.Document(Web.Contents(minhaURL,
[
Headers=[#"Content-Type"="application/json",
#"Authorization" = "Basic "&Binary.ToText(Text.ToBinary("Uw6QvcZwzRtp:qaRCeKStnXhE"), 0)
],
Content=Text.ToBinary(body)])
),

access_token = getToken[access_token],
authToken = "bearer " & access_token,

//urlRequest= path & "/feed/precos-indices/v1/titulos-publicos/curvas-juros",
urlRequest = "https://api-sandbox.anbima.com.br/feed/precos-indices/v1/titulos-publicos/mercado-secundario-TPF",
//keyPhrases = KeyPhrases(),
results = Json.Document(Web.Contents(
urlRequest,
[
Headers=[#"Content-Type"="application/json",
client_id = "Uw6QvcZwzRtp",
access_token = authToken
]

// Headers=[Accept="application/json",#"Authorization"=authToken]
// Headers = [#"Authorization"=authToken]
]
)
)
in results

The window below show the problem. The text is written in portuguese language.

 

JoseJunior22_0-1656438974744.png

 

 

    

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

HI @JoseJunior22,

I think this may be related to your API authorization, the 'anonymous' mode is set on the root URL instead of the detailed API URL. Perhaps you can add the relative path option to handle this scenario:

let
    body = "{'grant_type' : 'client_credentials'}",
    rootURL = "https://api-sandbox.anbima.com.br",
    _tokenPath = "/oauth/access-token",
    getToken =
        Json.Document(
            Web.Contents(
                rootURL,
                [
                    Headers = [
                        #"Content-Type" = "application/json",
                        #"Authorization" =
                            "Basic "
                            & Binary.ToText(
                                Text.ToBinary("Uw6QvcZwzRtp:qaRCeKStnXhE"),
                                0
                            )
                    ],
                    RelativePath = _tokenPath,
                    Content = Text.ToBinary(body)
                ]
            )
        ),
    access_token = getToken[access_token],
    authToken = "bearer " & access_token,
    //urlRequest= path & "/feed/precos-indices/v1/titulos-publicos/curvas-juros",
    _relativePath = "/feed/precos-indices/v1/titulos-publicos/mercado-secundario-TPF",
    //keyPhrases = KeyPhrases(),
    results =
        Json.Document(
            Web.Contents(
                rootURL,
                [
                    Headers = [
                        #"Content-Type" = "application/json",
                        client_id = "Uw6QvcZwzRtp",
                        access_token = authToken
                    ],
                    RelativePath = _relativePath
                // Headers=[Accept="application/json",#"Authorization"=authToken]
                // Headers = [#"Authorization"=authToken]
                ]
            )
        )
in
    results

Chris Webb's BI Blog: Using The RelativePath And Query Options With Web.Contents() In Power Query An...

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

HI @JoseJunior22,

I think this may be related to your API authorization, the 'anonymous' mode is set on the root URL instead of the detailed API URL. Perhaps you can add the relative path option to handle this scenario:

let
    body = "{'grant_type' : 'client_credentials'}",
    rootURL = "https://api-sandbox.anbima.com.br",
    _tokenPath = "/oauth/access-token",
    getToken =
        Json.Document(
            Web.Contents(
                rootURL,
                [
                    Headers = [
                        #"Content-Type" = "application/json",
                        #"Authorization" =
                            "Basic "
                            & Binary.ToText(
                                Text.ToBinary("Uw6QvcZwzRtp:qaRCeKStnXhE"),
                                0
                            )
                    ],
                    RelativePath = _tokenPath,
                    Content = Text.ToBinary(body)
                ]
            )
        ),
    access_token = getToken[access_token],
    authToken = "bearer " & access_token,
    //urlRequest= path & "/feed/precos-indices/v1/titulos-publicos/curvas-juros",
    _relativePath = "/feed/precos-indices/v1/titulos-publicos/mercado-secundario-TPF",
    //keyPhrases = KeyPhrases(),
    results =
        Json.Document(
            Web.Contents(
                rootURL,
                [
                    Headers = [
                        #"Content-Type" = "application/json",
                        client_id = "Uw6QvcZwzRtp",
                        access_token = authToken
                    ],
                    RelativePath = _relativePath
                // Headers=[Accept="application/json",#"Authorization"=authToken]
                // Headers = [#"Authorization"=authToken]
                ]
            )
        )
in
    results

Chris Webb's BI Blog: Using The RelativePath And Query Options With Web.Contents() In Power Query An...

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

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.