I have an external API. I connect to it with Postman via basic auth and all is well.
The blacked out part is the base64 encoded username:password combination.
I save this route as a Postman collection and that collection contains the following, relevant block:
"headerData": [
{
"key": "Authorization",
"value": "Basic <redacted>",
"description": "",
"enabled": true
}
At this point, I'm expecting that I will be able to upload the collection file to Azure and it will create me a custom connector that uses my username:password to authenticate.
But it does not:
Instead, Azure is aware that it will need to use basic auth, but it will not be using the credentials I supplied, nor will it allow me to enter credentials.
1) How would a user enter a valid username/password to use this connector?
2) I want this connector to work autonomously, without user intervention. Am I misunderstanding something?
EDIT:
It's apparently possible to provide the username/password via the logic app itself, but I am never prompted, nor is there anywhere to insert the information:
That's the custom connector there with GETReservations. Basic point still stands. I want this to be unattended, no user interaction (after initial setup, of course).


