{ "client_id": "xxxx", "client_secret": "xxxxxxxxxxxxxx", "code": "xxxxxxxxxxxxxxx" }
curl --location --request POST '/v1/oauth2/get-access-token' \ --header 'Content-Type: application/json' \ --data-raw '{ "client_id": "xxxx", "client_secret": "xxxxxxxxxxxxxx", "code": "xxxxxxxxxxxxxxx" }'
{ "code": 0, "msg": "ok", "data": { "access_token": "xxxxxxxx" } }