Hi, I am trying to build a custom connector for CloudSight API, which is an image recognition service.
Here is its documentation:
https://cloudsight.readme.io/docs/authentication
Since Flow does not support OAuth 1.0 at this point, I am trying to implement the Simple Key-Based Method mentioned in the documentation above. Which basically request me to put the following in the HTTP Header:
Authorization: CloudSight [key]
I managed to make it work in Postman by hard coding the above in the header, however, when I try the same thing in Flow it doesn't work. I tried it by choosing No Authorization in the configuration and hard coding it in the Swagger. I also tried using API Key and this didn't work either.
Please advise on this issue since I think hard coding the authorization header is the correct approach.