John Davidson

ETSY Api PHP Obtaining Token Credentials

0 comments
Message:


I'm using y0lk package to help me with OAuth1 and ETSY App, I managed to get the temporary credentials, but can't get my hand on Access tokens.


here's what I do :


$client = new Etsy([
'identifier' => '*********************',
'secret' => '*********',
'scope' => 'listings_r transactions_r',
'callback_uri' => 'http://*********.loc/slider/'
]);

$tempCred = $client->getTemporaryCredentials();

$tmpSecret = $tempCred->getSecret();
$tmpId = $tempCred->getIdentifier();

// Redirect to Etsy Autorisation login page
$redirect_url = $client->getAuthorizationUrl($tempCred);

$accessTokens = $client->getTokenCredentials($tempCred, $tmpId, $_GET['oauth_verifier']);

Ok, I don't know how to do, because to obtain the oauth verifier ( and do the $_GET['oauth_verifier']), I have to go by the login page, and then, to get the access token, I need my temp credentials, but to get then I 'll have to go again by new Etsy and this is why I always got the token revoked error..


I'm beginner, in PHP and with API, if someone see other mistakes in my way to do this, feel free to point them out for me :)


Thank you for your time.



My Answer:
'your_client_id',_ 'secret' => 'your_client_secret',_ 'callback_uri' => 'your_callback_uri',_]);$temporaryCredentials = $client->getTemporaryCredentials();$client->getAuthorizationUrl($temporaryCredentials);$tokenCredentials = $client->getTokenCredentials($temporaryCredentials);_I'm not sure what I'm doing wrong, any help would be appreciated.

Rate this post

3 of 5 based on 2217 votes

Comments




© 2024 Hayatsk.info - Personal Blogs Platform. All Rights Reserved.
Create blog  |  Privacy Policy  |  Terms & Conditions  |  Contact Us