What’s the reason that the XML does not contain a single information about:
Is this content already watched or not?
How many times has it been watched?
When has it been watched?
I’m talking about the XML file one can see if clicking this Link. The XML has soooo many information, even about similar content, but not a single word about it’s watch state.
This is really, really, really interesting. I was playing around with Web APIs and there’s something not working as expected.
Take that URL that you get if you hit the “Show XML” link.
And now comes the funny part: The result is different if you call that URL in a browser. or in a Python script. The result from the Python script is missing the viewCount - and only the viewCount - the rest is identical:
#python3 -m pip install requests
import requests
r = requests.get("take URL from above")
print(r.text)