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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

Top Solution Authors