Access Token

where i can found Access Token

Login with github or Google or microsoft account. You will be redirected to access token page

https://gorest.co.in/my-account/access-tokens

same problem, this is de php curl code:

$ch = curl_init();

curlsetopt($ch, CURLOPTURL, 'https://gorest.co.in/public/v2/users'); curlsetopt($ch, CURLOPTRETURNTRANSFER, 1); curlsetopt($ch, CURLOPTPOST, 1); curlsetopt($ch, CURLOPTPOSTFIELDS, "{\"name\":\"Tenali Ramakrishna\", \"gender\":\"male\", \"email\":\"[email protected]\", \"status\":\"active\"}");

$headers = array(); $headers[] = 'Accept: application/json'; $headers[] = 'Content-Type: application/json'; $headers[] = 'Authorization: Bearer e761243054d12fcec19fba6ad5120789909f08c13ece23acb7c6765189e387d4'; curlsetopt($ch, CURLOPTHTTPHEADER, $headers);

$result = curlexec($ch); if (curlerrno($ch)) { echo 'Error:' . curlerror($ch); } curlclose($ch);

Where I can found Access token

https://gorest.co.in/my-account/access-tokens


Little markdown supported