Reputation: 137
To utilize paging of the Microsoft Graph API results, you can utilize the "skiptoken".
Does anyone know what the expiration date is on the skip token, if it's extendable, and if it's refreshable?
Upvotes: 0
Views: 918
Reputation: 24539
Does anyone know what the expiration date is on the skip token, if it's extendable, and if it's refreshable?
I don't think that you need to care the lifecycle of the skiptoken.
Based on my understanding, it is the equivalent of a cursor or bookmark, that instructs the server where to resume the record. If you want to retrieve the rest record, the auth bearer token(access token) still required.
For more information about skiptoken parameter, please refer to this link.
Upvotes: 1