Discussions

Ask a Question
Back to all

Auth is denying access to Endpoint

I ran it with base64 and without, from a console window, so the response surprised me.

curl -X POST https://api.d-id.com/animations
-H "Authorization: Basic XXXXXX"
{"Message":"User is not authorized to access this resource with an explicit deny"}

curl -X POST https://api.d-id.com/clips
-H "Authorization: Basic XXXXXX"
{"Message":"User is not authorized to access this resource with an explicit deny"}

curl -X POST https://api.d-id.com/
-H "Authorization: Basic XXXX:XXXX"
{"message":"Invalid key=value pair (missing equal-sign) in Authorization header (hashed with SHA-256 and encoded with Base64): 'QMEA5a/yRen+LOluvtLzCS2rXhpg+3vdghNd+8alipk='."}

Okay, I did that also:

curl -X POST https://api.d-id.com/animations
-H "Authorization: Basic XXXX=="
{"Message":"User is not authorized to access this resource with an explicit deny"}

So why is this not working, on my end all configruation parameters are in place, and I have a working application, but this endpoint is just not doing anything?

Cheers,

Stephan