instagram-web-api icon indicating copy to clipboard operation
instagram-web-api copied to clipboard

Are all the apis still working?

Open mbareeva opened this issue 3 years ago • 4 comments

Was using the login and getProfile() api, but the response json showed me that there is no user and user is not authenticated:

client
    .login()
    .then((data1) => {
      console.log('Data1: ', data1)
      client
        .getProfile()
        .then(data => {
          console.log("Data: ", data);
          res.json(data)
        });
    })

And the response was: Data1: { user: false, authenticated: false, status: 'ok' }

mbareeva avatar May 09 '21 11:05 mbareeva

I have the same question!

ansh avatar May 12 '21 20:05 ansh

Do you still have the same problem ? did you also try other methods ?

MonsieurBibo avatar Jun 05 '21 14:06 MonsieurBibo

I didn't try out other methods because without being successfully authorized I can not retrieve personal data and media data for logged in user. That is why I just implemented the requests with node.js and axios myself...

mbareeva avatar Jun 10 '21 13:06 mbareeva

Works for me. Maybe you have 2FA turned on?

teemujonkkari avatar Feb 28 '22 13:02 teemujonkkari