Hello
After getting my authorization code i try to get access token on Oauth API. but i get an error:
Internal server error. Error ref: 70049b04-8ea7-4dee-8d79-c91a823f7b62
I’ve make this request:
[POST] s://login.eveonline.com/oauth/token?grant_type=authorization_code&code=xxauthorization_codexxx
[HEADERS] Authorization: Basic client_id:client_secret_b64encoded
[HEADERS] Content-Type: application/x-www-form-urlencoded
I’ve try too with json payload:
[POST] s://login.eveonline.com/oauth/token
[HEADERS] Authorization: Basic client_id:client_secret_b64encoded
[HEADERS] Content-Type: application/json
[BODY]
{
“grant_type”:“authorization_code”,
“code”:“xxauthorization_codexxx”
}
I followed this instructions: s://developers.eveonline.com/blog/article/sso-to-authenticated-calls
And this instructions: s://eveonline-third-party-documentation.readthedocs.io/en/latest/sso/authentication.html
my authentification flow was working this summer, i don’t understand why i get now internal server error, it’s not very clear msg ?
Anyone have an idea ?