instagram-web-api
instagram-web-api copied to clipboard
🤳 Instagram Private Web API client for Node
Does not work with SMS based 2FA Was not tested with cookie storage
Hi @jlobos this is not an issue report is just a request for a feature: How is it possible to pass Username e.g. to the `getProfile()` method or some other...
I try to simply log in as ``` const Instagram = require('instagram-web-api'); const client = new Instagram({ username: 'XX', password: 'YY' }); (async () => { await client.login(); const profile...
Logging in normally, but when I fetch getProfile(), it returns undefined
Request: `client.login().then(console.log)` Response from instagram: `{ authenticated: false, user: true, status: 'ok' }` But not signed in Why?
Hello I have a problem with "getMediaByShortcode" endpoint, I have the error : **TypeError: Cannot read property 'shortcode_media' of undefined** Thanks a lot for the help
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:...
The json response no longer returns the "data.graphql.shortcode_media" structure.
I'm using this code in my React app: ``` const client = new Instagram({ username: process.env.IG_USERNAME, password: process.env.IG_PASSWORD, }); try { await client.login(); } catch (err) { console.log("Something went wrong...
Hello, I guessing about the possibility of searching users by their bio's, there is some possibility?