![Picture of Sagar Patil Picture of Sagar Patil](/graphics/unknown.gif)
Sagar Patil - 2015-11-02 13:54:24
I am using etsy ,
the example "Log In As Etsy" is working .
for this
$success = $this->client->CallAPI('https://openapi.etsy.com/v2/users/__SELF__','GET',array(), array('FailOnAccessError'=>true), $user);
LOGIN SUCCESSFULL!
but when I use
$success = $this->client->CallAPI('https://openapi.etsy.com/v2/listings','POST',$itemDetails, array('FailOnAccessError'=>true), $user);
gives an error -
it was not possible to access the API call: it was returned an unexpected response status 403 Response: This method requires scope authentication not granted.
I tried with both $this->client->scope = 'email_r%20listings_w'; and
$this->client->scope = 'listings_w';
client_id and client_secret both are set correctly
still getting the same error !!
please help ASAP