我使用Youtube Api在我的Youtube频道上上传视频(使用Java)。回调固定为:http://localhost:8080/Callback
如何更改回调到我设计的资源?例如http://localhost:8080/services/MyResponse
在发送给帐户的请求中配置了重定向URI。Google it self:
https://accounts.google.com/o/oauth2/auth?
client_id=xxxxx.apps.googleusercontent.com&
redirect_uri=http://google.ca&
scope=https://www.googleapis.com/auth/youtube&
response_type=token
…我们发送的请求包含redirect_uri, Google会将请求重定向到这个指定的redirect_url…
谢谢