gpt4 book ai didi

spring-security - Apache Oltu Spring Security OAuth2 和 Google 集成

转载 作者:行者123 更新时间:2023-12-02 03:27:41 25 4
gpt4 key购买 nike

引用资料纯粹取自以下网站:-

我已经开发了 String Security OAuth2 Facebook 集成示例,现在我期待开发 Security OAuth2 Google(以及后来的 Github)集成示例,其中将提供 AppID 和 Secret 以获取“access_token”和“refresh_token”等用于访问 protected 资源,如 UserDetails 等。

因此,第一步是在 http://code.google.com/apis/console 上注册应用程序.所以它给了我“客户端 ID”和“客户端密码”,我还配置了重定向 URI,完成!

现在我已经开始编写实际的 Apache OAuth 客户端,但我不确定我需要提供哪些参数(类似地,我为 Facebook 集成提供了这些参数,这些参数在 facebook 上很容易获得,在进行谷歌搜索时,但找不到对于谷歌),请给我建议应该为以下空白参数提供什么值 -

我想我已经提供了足够的信息,因此欢迎任何指导/帮助/链接。

OAuthClientRequest request = OAuthClientRequest
.authorizationLocation("")
.setClientId("3kT21Hlkzzt5eV1")
.setRedirectURI("http://localhost:8080/apache-oltu/google/redirect")
.setResponseType("")
.setScope("")
.buildQueryMessage();

下面的代码是为回调而开发的

private void getAccessToken(String authorizationCode) throws OAuthSystemException, OAuthProblemException {
OAuthClientRequest request = OAuthClientRequest
.tokenLocation("")
.setGrantType()
.setClientId("3kT21H5EO3zzt5eV1")
.setClientSecret("1kT21Hdlkzzt5eV1")
.setRedirectURI("http://localhost:8080/apache-oltu/google/redirect")
.setCode()
.buildBodyMessage();

添加了以下代码以获取 protected 资源,例如用户个人资料:

request= new OAuthBearerClientRequest("https://www.googleapis.com/auth/userinfo.profile").
setAccessToken(oAuthResponse.getAccessToken()).
buildQueryMessage();

最佳答案

关于spring-security - Apache Oltu Spring Security OAuth2 和 Google 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29461099/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com