13 lines
338 B
HTTP
13 lines
338 B
HTTP
# @name Get Authorization
|
|
|
|
POST https://myanimelist.net/v1/oauth2/token
|
|
Content-Type: application/x-www-form-urlencoded
|
|
Accept: application/json
|
|
|
|
grant_type=authorization_code&
|
|
client_id={{MAL_CLIENT_ID}}&
|
|
client_secret={{MAL_CLIENT_SECRET}}&
|
|
redirect_uri=http://localhost:6734/callback&
|
|
code={{MAL_CODE}}&
|
|
code_verifier={{MAL_VERIFIER}}
|