I have a line of python code in my bot:
playlist_snippet = self.youtube.playlistItems().list(
playlistId=playlistId, part='snippet',
maxResults=50, pageToken=next_page_token
).execute()
The playlistId is the id of the user upload playlist. I've noticed that this seems to be updated 10 - 50 mins after the playlist is updated on the youtube website and also the equivalent API v2 call.
Is there a better API call to make? Is this purposefully untimely?
p.s. for anyone interested this is my code: https://github.com/notatallshaw/arandabot/blob/master/ytvideos.py
Edit: The more I test this the more I get examples of it taking over an hour to update the user upload playist via API v3 vs. the website or API v2.