-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No support for deltaToken and skipToken #242
Comments
Thanks for adding this issue. I had the same, was using the applications/service principals which utilize skipToken. Agree that otherwise this is a good module. Not usable by me without this being solved. |
Hello, I am still seeing this same issue in I don't see how delta requests can be used (at all) until this is fixed. The documentation states that we should add a Documentation for SDK Preview
Error thrown:
|
Adding to this issue as we ran into this yesterday trying to use |
Hi everyone, This is why our generation process DOES NOT emit query parameters for deltaToken and skipToken, so consumers are not tempted to parse the link and store only the token, but instead use the entire URI. To use those links, use the with url method instead, like so (excuse my python) page1 = client.groups.delta.get()
page2 = client.groups.delta.with_url(page1.odata_next_link).get() We have an issue to implement automatic pagination with the next links for you so you don't have to implement the iteration please upvote it if you feel like it'd be beneficial to you. |
Thank you @baywet 👏 |
This issue has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for 4 days. It will be closed if no further activity occurs within 3 days of this comment. |
Hey,
I have hard time understanding if this SDK is capable of making calls using Delta endpoints.
While I can use this endpoint to make initial request to the API:
await client.groups.delta.get()
I can't see how can I make subsequent calls to Delta endpoint. There is no option to attach deltaToken. The same goes for skipToken which is crucial because the initial delta call is almost always paged.
I can't even inject this query parameters by myself because the API expects only known query parameters:
To make matters even more confusing this kind of documentation is signaling something that is not yet supported by this SDK.
So is it possible to make calls, that include deltaToken or skipToken, using this SDK? Or will it be added in future. Because beyond that this SDK is looking amazing.
The text was updated successfully, but these errors were encountered: