seregazhuk / php-pinterest-bot

This PHP library will help you to work with your Pinterest account without using any API account credentials.
MIT License
416 stars 129 forks source link

Unable to get Followers for any Account! #394

Closed KJ1i closed 6 years ago

KJ1i commented 6 years ago

Hi there,

Recently, I am unable to get followers of any account. Previously, I was able to get followers perfectly (without even logging in with this), but now I am unable to.

Can you please fix it? It will be really appreciated. Thanks!

Here is a small test code I use, now all it 'echoes' is a blank page:-

require('vendor/autoload.php');
use seregazhuk\PinterestBot\Factories\PinterestBot;
$bot = PinterestBot::create();
$peopleToFollow = $bot->pinners->followers('xxxxxxxxxxxxx')->toArray();

foreach($peopleToFollow as $user) {
echo $user['username'] . ",";
}
KJ1i commented 6 years ago

I fixed it by logging into Pinterest first with the bot and then getting the Followers. Thanks for this amazing bot! @seregazhuk

seregazhuk commented 6 years ago

Hm, looks like Pinterest has changed their API and now require being logged in 👍