check if error exists in response data#6
Open
sleepyeePanda wants to merge 1 commit into
Open
Conversation
print error if error exists in the api response data(video_data_page)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
An api_request() function checks only for 429 error.
but, 403 error could also be found in response data(variable named 'request').
403 error has 'Access Not Configured. YouTube Data API has not been used in project 1034474976246 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/youtube.googleapis.com/overview?project=1034474976246 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.' message.
so, I think may be you could add 403 error check code in api_request() or just simply check if 'error' exist in response data(variable named 'video_data_page) as I added the code.