Forum Discussion
smeneg
7 years agoNew Member
Microsoft.Data.Mashup.CredentialError.Reason CredentialInvalid
Hi, We are developin a custom data connector to connec to through a custom WEB API to a SaaS application. The Authentication type is similar to the github example i.e. OAuth2 XXX = [
Test...
smeneg
7 years agoNew Member
One more clue:
I changed the custom data connector code
XXX = [
TestConnection = (dataSourcePath) => { "XXX.Contents" },
Authentication = [
OAuth = [
StartLogin = StartLogin,
FinishLogin = FinishLogin,
Logout = Logout,
Label = Extension.LoadString("AuthenticationLabel")
]
],
Label = Extension.LoadString("DataSourceLabel"),
SupportsEncryption = false
];To NOT Support encryption and the refresh works fine. So the question is what should a custom data connector developer do in order for his/her code to work with encrypted connections?
I though that the encryption / decryption will be handled by the service / gateway and that the custom data connector should not be ware of the calling context.