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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
dapuvv
Regular Visitor

Power BI rest API : can not connect to "http" datasource

Hi
I am using below api call to update crendentials on my odata datasource 
https://learn.microsoft.com/en-us/rest/api/power-bi/gateways/update-datasource#basic-credentials-exa...

It is working fine when I used it for "https://" but its giving below issue when I am trying to connect for "http"

 

{"code":"DMTS_InvalidEncryptionAlgorithmError","pbi.error":{"code":"DMTS_InvalidEncryptionAlgorithmError","parameters":{},"details":[],"exceptionCulprit":1}}.

then I used 
aCredentialsMap= "{\"credentialData\":[{\"name\":\"username\",\"value\":\"" + credentialsArray[0] + "\"},{\"name\":\"password\",\"value\":\"" + credentialsArray[1] + "\"}]}";

body = Map.of("credentialDetails", Map.of( //
"credentialType", "Basic", //
"encryptedConnection", "Encrypted", //
"encryptionAlgorithm", "RSA-OAEP", //
"privacyLevel", "None", //
"useEndUserOAuth2Credentials", "False", //
"credentials", aCredentialsMap);

[DEUTranslation 1]-(PBIR_0009)Publishing the PowerBI file failed. Error code: {"code":"UnknownError","pbi.error":{"code":"UnknownError","parameters":{},"details":[]}}."

 

which credentialType should I use?

do I need to encrypt credentials? 


any help can be appriciated.

 

2 REPLIES 2
v-yaningy-msft
Community Support
Community Support

Hi, @dapuvv 

 

According to the information you provided, the error states DMTS_InvalidEncryptionAlgorithmError, you may consider changing the encryptionAlgorithm to none. HTTP is an insecure connection, please consider using HTTPS if necessary.

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

We have customers who uses both http and https so , we have to support  to connect to http ,
Please provide solution if you have any ,

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors