Showing Posts For AlterForm.7045:
Need some help for this error. Is there anything I am missing?
{ error: "internal_error", error_description: "49:1014:8008:353" }
I’m getting this same error.
After authorizing my application for my account through /oauth2/application, I’m making the request
https://account.guildwars2.com/oauth2/token?
grant_type=authorization_code&
code=CODE_FROM_OUATH2_AUTHORIZATION&
redirect_uri=http://localhost:8080/oauth2/callback&
client_id=MY_CLIENT_ID&
client_secret=MY_CLIENT_SECRET
.
and getting the same unhelpful “internal error” response, which is doubly unhelpful in that the response code is actually 400 so I’m not sure if it’s an actual internal error or some problem on my side. I’ve tried it with both GET and POST requests, same result.
Messing with the request parameters some more I can produce
{
"error": "internal_error",
"error_description": "10:1014:8039:171 - NetAdjOAuth: missing or invalid user id"
}
.when I send a “code” parameter of “a”. Munging any of the other parameters results in the same unhelpful error_description as above.