Hey mdriess,
It’s sounds like that may be the case. There’s a way to get around this but it would require you to edit the source code of the plugin and hardcode multiple Access Tokens. First you’d need to sign up for a couple of new, empty Instagram accounts in order to obtain access tokens from a total of 3-4 accounts and then you can select from those 3-4 tokens at random when making an Instagram API request. This then effectively balances the load between the tokens.
If you open the plugin’s “instagram-feed.php” file then on line 216 you’ll see the following code:
$data = array(
'sb_instagram_at' => $sb_instagram_at
);
Before this add an array of your Access Tokens and then select one at random, as shown below:
$access_token_array = array(
'ACCESS_TOKEN_1',
'ACCESS_TOKEN_2',
'ACCESS_TOKEN_3',
'ACCESS_TOKEN_4'
);
$data = array(
'sb_instagram_at' => $access_token_array[rand(0, 3)]
);
Let me know whether that works as a potential solution for you.
John