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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
ZaraSeif123
Frequent Visitor

Einstein Analytics REST API query

Hi
I'm using this code to connect to Einstein Analytics in Salesforce and fetch data using Rest APIs
let
    token_url = "https://login.salesforce.com/services/oauth2/token",   
    api_base_url = "https://***.my.salesforce.com/services/data/v48.0/wave/query",
    qry_str = "",
   body="grant_type=password&client_id=***&client_secret=***&username=***&password=***",
   Source  = Json.Document(Web.Contents(token_url,
   [
     Headers = [#"Content-Type"="application/x-www-form-urlencoded"],
     Content=Text.ToBinary(body)
   ]
   )
   ),
    token = Source[access_token],
content = "{
    ""query"":""q = load \""DataSetName\"";  
     q = limit q 200;""
}",
    data= Json.Document(Web.Contents(api_base_url&qry_str,
   [
     Headers = [
                #"Authorization"="Bearer "&token,#"Content-Type"="application/json"],Content=Text.ToBinary(content)
    
   ]
   )
   )
in
    data
 
 
 
the Authentication works fine and I can get the access token and connect but when I post the second request I get this error: "We couldn't authenticate with the credentials provided"
Am I sending the post request correctly by using Content=Text.ToBinary(content)? or maybe my SAQL query is wrong? as I'm not familiar with SAQL.
the below code works:
  
    api_base_url = "https://***.my.salesforce.com/services/data/v42.0/wave",
  
    data= Json.Document(Web.Contents(api_base_url&qry_str,
   [
     Headers = [
                #"Authorization"="Bearer "&token,#"Content-Type"="application/json"]
    
   ]
   )
   )
  
but when I change the URL to   "https://***.my.salesforce.com/services/data/v48.0/wave/query" and post the query it breaks.
Any help with this will be greatly appreciated.
Thanks
Zara
 
1 ACCEPTED SOLUTION
ZaraSeif123
Frequent Visitor

Hi Guys 

 

In case anybody else faces this issue, I solved it by adding \n to my query:

 

content = "{
    ""query"":""q = load \""DataSetName\"";  \n q = limit q 200;""
}",

View solution in original post

1 REPLY 1
ZaraSeif123
Frequent Visitor

Hi Guys 

 

In case anybody else faces this issue, I solved it by adding \n to my query:

 

content = "{
    ""query"":""q = load \""DataSetName\"";  \n q = limit q 200;""
}",

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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