我使用了用于Python的Google Youtube视频上传代码
代码链接:https://developers.google.com/youtube/v3/guides/uploading_a_video
它使用JSON文件(client_secrets.json)来执行身份验证和授权请求。但是身份验证令牌会在一小时内过期。
Google提供了一个引荐来源令牌,可用于重新生成身份验证令牌,而无需再次在浏览器上重定向用户。
我已使用引荐来源令牌更新了JSON文件,但没有区别。
{"web":{"client_id":"dummy_app_id.apps.googleusercontent.com",
"project_id":"dummy-youtube-api-205845",
"auth_uri":"https://accounts.google.com/o/oauth2/auth",
"token_uri":"https://accounts.google.com/o/oauth2/token",
"auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs",
"client_secret":"dummy_client_secret",
"redirect_uris":
["http://localhost:8080/oauth2callback","http://127.0.0.1:8080/oauth2callback","http://127.0.0.1:8887/oauth2callback","http://localhost:8080/","https://developers.google.com/oauthplayground/","https://developers.google.com/oauthplayground"],
"javascript_origins":["http://localhost:8080"],
"grant_type":"refresh_token",
"refresh_token":"dummy_refresh_token",
"prompt":"email_id_to_use@gmail.com"}}
这里有什么问题?