0
Instagram APIでフォロワーのリストを取得しようとしています。 このプロセスでは、Instagram APIは次のようにページングのキーを私に与えません。Instagram APIのフォロワーのリストでページ番号を取得できません
私はSandboxモードで、Instagram APIのレビューに合格するアプリを作成しています。また、Pythonライブラリを介して直接データを取得しようとしましたが、まだ動作しません。
ページネーションのキーを取得する方法を教えてください。あなたはサンドボックスモードで改ページを取得することはありません
from instagram.client import InstagramAPI
access_token = "ACCESS_TOKEN"
client_secret = "CLIENT_SECRET"
api = InstagramAPI(access_token=access_token, client_secret=client_secret)
followed_by, next = api.user_followed_by()
print next # -> None
# 'pagination' key is empty.
# https://api.instagram.com/v1/users/self/followed-by.json?access_token=ACCESS_TOKEN
# {
# "pagination": {},
# "data": [
# {
# "id": "1111111111",
# "username": "xxxx_xxxx",
# "full_name": "xxxxxxxxx",
# "profile_picture": "..."
# },
# {
# "id": "2222222222",
# "username": "yyyy_yyyy",
# "full_name": "yyyyyyyyy",
# "profile_picture": "..."
# },
# ],
# "meta": {"code": 200}
# }