Skip to main content

we are working on a time sensitive important project and encountering login failure while trying to obtain an access token using basic authentication

Ensure you are base64 encoding the values API_User and API_Key in the format ApiUser:ApiKey note the : that joins them together. This encoded value is what you pass as the Authorization that is Authorization: base64EncodedValueOf(ApiUser:ApiKey)


Reply