Google Web Sign(JS)今天突然停止使用我们的产品 - 出现 400错误,并出现以下错误消息: { “error”:“invalid_request”, “error_description”:“此消息类型不允许参数:提示” }
我们将破损追溯到选项配置中的“提示”签名。在下面的代码中,只要注释掉提示配置,就可以了。
gapi.client.init({
client_id: clientId,
cookiepolicy: 'single_host_origin',
prompt:"select_account",//commenting this code out stopped the breakage
discoveryDocs: DISCOVERY_DOCS,
scope: SCOPES.join(" "),
}).then(function () {
//we do something with it
});
屏幕截图:https://www.evernote.com/l/AAK5kGGdJp9EkJC0lafcuREnLrNFt-u5muY
这是以前正在运行的代码,根据文档(see here)仍支持“prompt”参数。
这个错误对我们来说非常昂贵,因为我们正处于竞选活动中,许多用户试图首次使用我们的产品进行注册。