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

Add a Comment #25

Open lincolnlemos opened 10 years ago

lincolnlemos commented 10 years ago

I'm trying to add a comment, but is not working. My code is:

io.sockets.on('connection', function (socket) { Instagram.media.comment({ media_id: 'xxxx', access_token: 'xxxxx', text: 'Cool' }); });

Whats is wrong?

molefrog commented 10 years ago

Hi! I'm facing the similar issue and it seems that you can only add comments to your own media (after you have completed oauth procedure). In order to add comments to other users' media you have to write a letter to Instagram developers and ask to enable this feature for your app.

Unfortunately, they don't respond for like months, so it can take a while. Good luck!