Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make
channels?part=membership
deterministic
As requested by someone on [Discord](https://discord.com/channels/@me/1127939666792951859/1235245766789042246). Verified with 12 requests in a row thanks to: ```py import requests from tqdm import tqdm url = 'http://localhost/YouTube-operational-API/channels' params = { 'part': 'membership', 'id': 'UCADXSO2msINXrTXAHxKoUgg', } progressBar = tqdm() while True: response = requests.get(url, params) if response.status_code == 500 or response.json()['items'][0]['isMembershipEnabled'] != True: break progressBar.update(1) ```
- Loading branch information
d8e89c7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also verified with 14 requests in a row in production.