javascript – 如何将login_hint传递给gapi.auth.authorize?
作者:互联网
我似乎记得有一个参数gapi.auth.authorize指定一个login_hint绕过帐户选择器.但谷歌和我一样,我找不到它.这只是一场梦吗?
我的问题是我遇到了帐户选择器在当前窗口下弹出的问题,因此用户错过了.
或者问一个问题的另一种方式可能是,如何通过Javascript库公开login_hint和incremental auth https://developers.google.com/accounts/docs/OAuth2UserAgent#incrementalAuth等参数?
解决方法:
谷歌的OAuth 2.0 documentation, under the heading Forming the URL声明接受了login_hint参数(例如,login_hint = ema@fake.com).
JavaScript Client Library documentation, under gapi.auth.authorize
,声明:
If the key is not one of the expected OAuth 2.0 parameters (see below), it is added to the URI as a query parameter.
所以你应该能够做到这一点:
gapi.auth.authorize({
// Parameters here...
'login_hint': 'email@fake.com',
// ...Parameters here
}, callbackFunc);
该库将在请求URL中包含login_hint参数.
标签:javascript,google-api,google-oauth 来源: https://codeday.me/bug/20190718/1491403.html