-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Closed
Labels
🚨This issue needs some love.This issue needs some love.triage meI really want to be triaged.I really want to be triaged.
Description
I happened to try updating google-api-python-client from 1.5.5 to 1.6.1. It causes my YouTube Data API v3 code to always fail with a HttpError. An example to reproduce is:
from apiclient.discovery import build
DEVELOPER_KEY = "<Insert key>"
youtube = build("youtube", "v3", developerKey=DEVELOPER_KEY)
youtube.videos().list(id="xGG56MWgbOA", part="id").execute()
This returns a successful response on 1.5.5, but raises a HttpError on 1.6.1:
HttpError: <HttpError 403 when requesting https://www.googleapis.com/youtube/v3/videos?alt=json&part=id&id=xGG56MWgbOA&key=<Insert key> returned "Insufficient Permission">
Visiting the specified link in a browser returns a valid response. Is there some usage change I am not aware of?
Metadata
Metadata
Assignees
Labels
🚨This issue needs some love.This issue needs some love.triage meI really want to be triaged.I really want to be triaged.