android: how to get user photos in Instagram?

后端 未结 2 1020
囚心锁ツ
囚心锁ツ 2021-02-01 11:30

In my app my requirement is to get the user photos and show in my app.

For that i am authenticate , got access token and enter username password but that shows you don\'

2条回答
  •  迷失自我
    2021-02-01 12:02

    GET /users/[USER_ID]/media/recent/?access_token=[ACCESS_TOKEN]

    You can hit this URL to get the user's feed (last 20 photos). This will give you a JSON array that you will then need to parse and display as desired in your app.

提交回复
热议问题