I am using Admin SDK. I am retrieving 30 users per request. I am using nextPageToken
to get next 30 users. Can anyone tell me how long is the nextPageToken
?
Asked
Active
Viewed 316 times
0
1 Answers
1
nextPageToken
doesn't have validity timeout. It's just pointer to specific location in the index.

tomrozb
- 25,773
- 31
- 101
- 122
-
if i take nextpagetoken value, saveed into database and after some time if i give second request call with nextPageToken then will it return next 30 users.? – RBP Jan 07 '15 at 10:08
-
1Yes. As I mentioned in my answer this is just a pointer to the position in the index. Remember that something may be added or removed in the mean time, so duplicated users may be returned (user removed) or some users will be omitted (a new users added). – tomrozb Jan 07 '15 at 11:12