Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
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 ,
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.