I am trying to build a website that connect with Instagram.
And I want to subscribe Instagram's tag for real time.
curl -F 'client_id=CLIENT-ID' \
-F 'client_secret=CLIENT-SECRET' \
-F 'object=tag' \
-F 'aspect=media' \
-F 'object_id=nofilter' \
-F 'callback_url=http://YOUR-CALLBACK/URL' \
https://api.instagram.com/v1/subscriptions/
I really don't know how to do this in nodejs.