Hello @Freddy,
The Thinkwise Platform does contain a specific OAuth connector for client credentials (the OAuth Server Login connector), but this one does not support certificates.
Web connections on the other hand do support certificates and requesting a token via OAuth client credentials is fairly straightforward (your example is basically it). In order to use your .cert and .key file in a Web Connection, you will have to merge them into a single .pfx file, which you can then use as the certificate file for your Web Connection. You can do this with tools like openssl
, but Windows actually has a pretty convenient built-in tool for this as well called certutil
which has a -mergepfx
feature which seemingly does the trick. A quick Google search should show you how to do this.
I hope this helps.
Hello @Freddy,
The Thinkwise Platform does contain a specific OAuth connector for client credentials (the OAuth Server Login connector), but this one does not support certificates.
Web connections on the other hand do support certificates and requesting a token via OAuth client credentials is fairly straightforward (your example is basically it). In order to use your .cert and .key file in a Web Connection, you will have to merge them into a single .pfx file, which you can then use as the certificate file for your Web Connection. You can do this with tools like openssl
, but Windows actually has a pretty convenient built-in tool for this as well called certutil
which has a -mergepfx
feature which seemingly does the trick. A quick Google search should show you how to do this.
I hope this helps.
I will test it next week.