Closed gyurisc closed 5 years ago
Hi @seregazhuk,
Thanks for this library. I am trying to use it but the login does not work for me. Here is the script I am trying to use:
// creating pins $bot = PinterestBot::create(); $bot->auth->register('yiyi22@garage146.com', 'secret', 'mike146899'); var_dump($bot->getLastError()); $bot->auth->login('yiyi22@garage146.com', 'secret', 'mike146899'); var_dump($bot->getLastError()); $bot->topics->follow('content-marketing'); var_dump($bot->user->id()); var_dump($bot->getLastError());
For the var dumps after register and login methods, I am receiving NULL
The issue is my fault. I was using an older version and all I needed to do is to get the latest version. Login works no ok. Sorry, for the confusion.
Hi @seregazhuk,
Thanks for this library. I am trying to use it but the login does not work for me. Here is the script I am trying to use:
For the var dumps after register and login methods, I am receiving NULL