Instagram: Get photos by user and tag

后端 未结 4 1721
北荒
北荒 2021-02-05 17:15

Perusing the Instagram API I see it\'s pretty straightforward to search for photos by tag OR by username. However, I can\'t seem to find anything on searching by both. Is it pos

4条回答
  •  花落未央
    2021-02-05 17:25

    There is an opportunity how to do it:

    https://api.instagram.com/v1/tags/SEARCH_TAG/media/recent?client_id=CLIENT_ID&callback=MY_CALLBACK
    

    SEARCH_TAG - input

    CLIENT_ID - its your ID after registration

    MY_CALLBACK - your callback function.

    You will receive your response in Form of JSONP.

    After it you can search your response with the parameters your want.

提交回复
热议问题