We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0312f8f + 44dce0d commit e5f7d58Copy full SHA for e5f7d58
README.md
@@ -126,6 +126,15 @@ for media in recent_media:
126
photos.append('<img src="%s"/>' % media.images['thumbnail'].url)
127
```
128
129
+And an example of exhaustively pursuing a paginated endpoint:
130
+
131
+``` python
132
+follows, next_ = api.user_follows()
133
+while next_:
134
+ more_follows, next_ = api.user_follows(with_next_url=next_)
135
+ follows.extend(more_follows)
136
+```
137
138
Users: http://instagr.am/developer/endpoints/users/
139
140
``` python
0 commit comments