I am trying to use Youtube API to download caption of a video. None of my requests were successful due to quotaExceeded error. However, I have not spent any quota other than request caption list to get the id of the caption.
request = youtube.captions().download( id="O-jAeIynN9yCRz1el0-7JaFewbFekv8NUbhAZBwVajw=")# TODO: For this request to work, you must replace "YOUR_FILE"# with the location where the downloaded content should be written.fh = io.FileIO("/Users/joehuangx/Desktop/test", "wb")
Based on the documentation, download caption requires 200 units in quota, which is within the range of daily limit.