We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The version that is installed when I do npm install instagram does not have functionality for retrieving user info.
npm install instagram
function InstagramClient(client_id, client_secret) { this.client_id = client_id; this.client_secret = client_secret; this.media = new InstagramMediaClient(this); this.tags = new InstagramTagsClient(this); this.locations = new InstagramLocationsClient(this); }
missing
this.users = new InstagramUsersClient(this);
and everything else related to that... can it be updated please?
The text was updated successfully, but these errors were encountered:
+1 having the same issue
A quickfix is of course just using "instagram": "git://github.com/Swizec/nodestagram.git#master", in your pacakge.json
"instagram": "git://github.com/Swizec/nodestagram.git#master",
Sorry, something went wrong.
+1. I was wondering why some methods are undefined, that's because it's not published on NPM.
No branches or pull requests
The version that is installed when I do
npm install instagram
does not have functionality for retrieving user info.missing
and everything else related to that... can it be updated please?
The text was updated successfully, but these errors were encountered: