This repository was archived by the owner on Dec 30, 2020. It is now read-only.
This repository was archived by the owner on Dec 30, 2020. It is now read-only.
Unable to get Followers for any Account! #394
Closed
Description
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'] . ",";
}