Kindly confirm that when we plug in the url to step 1 something similar to this happens in the backend. Thanks
<?php
$base_uri = 'https://openapi.etsy.comâ;
$api_key = âYOURAPIKEYâ;
$secret = âYOURSECRETâ;
$oauth = new OAuth($api_key, $secret);
$req_token = $oauth->getRequestToken($base_uri . â/v2/oauth/request_token?scope=â, âoobâ, âGETâ);
$login_url = $req_token[âlogin_urlâ];
print âPlease log in and allow access: $login_url \n\nâ;
$verifier = readline("Please enter verifier: ");
$verifier = trim($verifier);
$oauth->setToken($req_token[âoauth_tokenâ], $req_token[âoauth_token_secretâ]);
$acc_token = $oauth->getAccessToken($base_uri . â/v2/oauth/access_tokenâ, null, $verifier, âGETâ);
$oauth_token = $acc_token[âoauth_tokenâ];
$oauth_token_secret = $acc_token[âoauth_token_secretâ];
$oauth->setToken($oauth_token, $oauth_token_secret);
print âToken: $oauth_token \n\nâ;
print âSecret: $oauth_token_secret \n\nâ;