Copy link to clipboard
Copied
Hi,
Not sure if this is the correct place to post this, if not, please let me know.
I have a strange issue with the API endpoint
After some debugging it turned out that you need to send a "User-Agent" header when requesting a second access token quickly after the first request.
So this fails:
Request access token
Call usermanagement API with access token -> 200
Request new access token
Call usermanagement API with new access token -> 429
But if you do it like this it works:
Request access token
Call usermanagement API with access token -> 200
Request new access token
Call usermanagement API with new access token AND User-Agent he
...Copy link to clipboard
Copied
After some debugging it turned out that you need to send a "User-Agent" header when requesting a second access token quickly after the first request.
So this fails:
Request access token
Call usermanagement API with access token -> 200
Request new access token
Call usermanagement API with new access token -> 429
But if you do it like this it works:
Request access token
Call usermanagement API with access token -> 200
Request new access token
Call usermanagement API with new access token AND User-Agent header set -> 200
Interesting! But at least it works now.
Copy link to clipboard
Copied
thanks for the update.