Hello Guys,
I had the same issue since a few hours today.
Now I have found a work around that I share with you.
The root cause of the issue probably came from Instagram in the yway they check the login and password.
But so far in the plugin code, there is a use of a sub library “mgp25/Instagram-API” and in the way it is used so far there where something like
$i = new \InstagramAPI\Instagram($username, $password, $debug);
try {
$i->login();
} catch (Exception $e) {
$e->getMessage();
exit();
}
And the problem come from the phase whith the try section where it tries to authenticate twice the user. This has worked so far, but today it does not work anymore.
The first line $i = new \InstagramAPI\Instagram($username, $password, $debug); already login the plugin to instagram.
So to make it works, now I had to put in comment the following lines (Around line 724 to 729 in wp2instagram.php )
//try {
// $i->login();
//} catch (Exception $e) {
// $e->getMessage();
// exit();
//}
And now my post are shown again in instagram.
So Roland (The author of the plugin), if you pass here I do not know if this is normal or not or if something needs to be adapted with a new version of the plugin.
I just wanted to share this tips with all of you.
Laurent Dufour
-
This reply was modified 6 years ago by dufour_l.
-
This reply was modified 6 years ago by dufour_l.