mckelvey / instagram-node-lib

The Instagram Node Lib is a helper library for node that makes communicating with the Instagram API easy.
http://david.mckelveycreative.com/
Other
303 stars 49 forks source link

OAuthAccessTokenException #41

Open BrunoQuaresma opened 8 years ago

BrunoQuaresma commented 8 years ago
Instagram.set('client_id', 'some');
Instagram.set('client_secret', 'foo');

Instagram.tags.info({
  name: 'blue',
  complete: function(data){
    console.log(data);
  }
});

show

OAuthAccessTokenException occurred: The access_token provided is invalid. in _request

gitMisi commented 8 years ago

Set up your access-token before the query: Instagram.set("access_token", YOUR-TOKEN);

The Instagram API had been changed, and the module is a bit out outdated.

iamskok commented 8 years ago

@BrunoQuaresma did you figure it out?

mrkrumhausen commented 8 years ago

This require a lot of manual setup, including defining scope which isn't part of the official documentation

eldyvoon commented 8 years ago

where do I find access token?