3

直到几天前,我还可以使用此链接中提到的(以及其他几个)从 google 帐户注销程序。

推荐的注销 URL 类似于: https ://www.google.com/accounts/Logout?continue=https://appengine.google.com/_ah/logout?continue=http://localhost:4200/index .html

但是在导航到推荐的 URL 时突然出现重定向通知页面,而不是直接导航到 http://localhost:4200/index.html

一个问题中报告了一个类似的问题,但问题在不久后自行解决

任何人都可以确认从 google 帐户 URL 注销仍然有效吗?

非常感谢

4

1 回答 1

2

重定向通知页面外观是 appengine API 的预期行为

出于安全原因,它将不再起作用,除非URL 将被签名

请查看文档,如何使用 appengine API 签署 URL


示例:您可以在API 方法页面上找到文档并进行测试。展开try this API窗口,您将可以访问 curl、http 和 javascript 中的示例。

您还需要使用?key=<YOUR_API_KEY>带有密钥的部分进行身份验证

curl --request POST \
  'https://iamcredentials.googleapis.com/v1/projects/-/serviceAccounts/<service-account-name>%40<project-name>.iam.gserviceaccount.com:signBlob?key=<YOUR_API_KEY>' \
  --header 'Authorization: Bearer <YOUR_ACCESS_TOKEN>' \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --data '{"payload":"<BLOB-TO-SIGN>"}' \
  --compressed
于 2019-04-25T15:41:47.003 回答