Hi guys,
I’m trying to write my first own HttpApi plugin for personal use.
I implemented the Login method as this API needs to authenticate first against a specific URL.
All looks well in the code but I keep getting 401 Unauthorized. When checking the packets with wireshark, the 401 packet shows an error message “Unsupported Authorization Header”
I’ve tried to modify the send_request method by adding my own headers, adding the force_basic_auth to false (as I saw that mentioned in the send method of Ansible HttpApi itself)
Is there anything possible, other than requesting the API Builder to ignore the auth header itself?