You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get this error when following the next_url code. V3
jobs = service.entity_sets.Jobs.get_entities().select('Location').execute()
while True:
for job in jobs:
print(job.Location)
# Stop if server has no more entities left
if jobs.next_url is None:
break
# We got a partial answer - continue with next page
jobs = service.entity_sets.Jobs.get_entities().next_url(jobs.next_url).execute()
The text was updated successfully, but these errors were encountered:
V3 is the problem, pyodata at the moment supports only V2 odata protocol. Lots of things are backward compatible with V2, but some incompatible changes are there.
Out of curiosity, could you paste the $metadata for the service and the json response for the: service.entity_sets.Jobs.get_entities().select('Location').execute()
Or you may directly provide failing test - check this one as a base:
Just providing the code that creates the error is not something that I can reproduce locally.
Since it got through the initial metadata parsing, I would like to check if you by accident uncover bug that would be present in odata V2 service as well.
Hi @Ndz85 I am closing this issue due impossibility to reproduce and inactivity from your side. If you return to this with code that reproduces the problem, please reopen.
I get this error when following the next_url code. V3
The text was updated successfully, but these errors were encountered: