Google 加上作用域的令牌在 API 关闭后是否会失效
Will tokens with Google plus scope invalidate after API shutdown
Google 已宣布将于 3 月 7 日关闭 Google+ 个范围和 API。
我们为单个刷新令牌批准了多个 Google 范围,所以我想我的问题是令牌会在关闭后完全失效吗?
例如,我有两个联系人范围 (https://www.google.com/m8/feeds) and Google+ scope (https://www.googleapis.com/auth/plus.me) 都批准了刷新令牌。
在 Google 加上 3 月 7 日关闭后,我是否仍然可以使用此令牌请求 Google 联系人 API?
只要刷新令牌还有其他有效范围,它们就会继续工作。本质上,plus.me
范围将是来自令牌的 "removed"。
After Google plus shutdown on March 7th, will I still be able to request Google Contacts APIs with this token?
Contacts v3 有两个作用域。取决于你在做什么。
- https://www.google.com/m8/feeds/ read/write 访问联系人和联系人组
- https://www.googleapis.com/auth/contacts.readonly 对联系人和联系人组的只读访问权限
只要您还在使用 https://www.google.com/m8/feeds/
,那么您就可以使用 google 个联系人 api。我不确定您为什么使用 https://www.googleapis.com/auth/plus.me
,因为 google 联系人 api 不需要它,但是您可能使用该范围进行的任何调用将不再有效。
您拥有的任何刷新令牌在呼叫 google 联系人时应该仍然有效 api
今天(2019 年 3 月 7 日)Google+ API 完全关闭,我在 rails 应用程序中遇到身份验证问题,我通过替换 OpenIdConnect 端点解决了它,如前所述
Google 已宣布将于 3 月 7 日关闭 Google+ 个范围和 API。
我们为单个刷新令牌批准了多个 Google 范围,所以我想我的问题是令牌会在关闭后完全失效吗?
例如,我有两个联系人范围 (https://www.google.com/m8/feeds) and Google+ scope (https://www.googleapis.com/auth/plus.me) 都批准了刷新令牌。
在 Google 加上 3 月 7 日关闭后,我是否仍然可以使用此令牌请求 Google 联系人 API?
只要刷新令牌还有其他有效范围,它们就会继续工作。本质上,plus.me
范围将是来自令牌的 "removed"。
After Google plus shutdown on March 7th, will I still be able to request Google Contacts APIs with this token?
Contacts v3 有两个作用域。取决于你在做什么。
- https://www.google.com/m8/feeds/ read/write 访问联系人和联系人组
- https://www.googleapis.com/auth/contacts.readonly 对联系人和联系人组的只读访问权限
只要您还在使用 https://www.google.com/m8/feeds/
,那么您就可以使用 google 个联系人 api。我不确定您为什么使用 https://www.googleapis.com/auth/plus.me
,因为 google 联系人 api 不需要它,但是您可能使用该范围进行的任何调用将不再有效。
您拥有的任何刷新令牌在呼叫 google 联系人时应该仍然有效 api
今天(2019 年 3 月 7 日)Google+ API 完全关闭,我在 rails 应用程序中遇到身份验证问题,我通过替换 OpenIdConnect 端点解决了它,如前所述