jlobos / instagram-web-api

🤳 Instagram Private Web API client for Node
https://npmjs.com/instagram-web-api
MIT License
1.12k stars 186 forks source link

analytics ? exemple #64

Open Chyper00 opened 6 years ago

Chyper00 commented 6 years ago

Hi

Can i get ??

comments: Total number of comments description: User description email: User email engagement: (((comments + likes) / posts) / followers) followers: Total number of followers following: Total number of following frequency: Returns a ms-to object with a post frequency between the first and last one fullName: User full name id: User id likes: Total number of likes posts: Total number of posts url: User Instagram url username: Same username as supplied website: User website

there is an exemple ?

client.getProfile() only returns

name: The full name. Default is email: The email of account. Default is username: The username of account. Default is client.credentials.username phoneNumber: The Phone Number. Default is gender: Number 1 male, 2 female and 3 not specified biography: The Bio. Default is website: The Website. Default is similarAccountSuggestions: Boolean Include your account when recommending similar accounts people might want to follow. Default is true

ghost commented 6 years ago

Hello!

You can get most part of this info by:

const username = 'your_username'; const profile = await client.getUserByUsername({username: username});

MonsieurBibo commented 3 years ago

Were you successful? If so can you close this issue please ?