gpt4 book ai didi

java - 如何使用 OAuth2 验证用户

转载 作者:太空宇宙 更新时间:2023-11-04 14:00:30 34 4
gpt4 key购买 nike

我有一个应用程序和注册到该应用程序的多个用户。我正在使用Google 服务将用户注册到我的应用程序。当用户尝试登录时,我使用用户emailId密码

使用 OAuth1授权机制验证用户

下面是我用于授权用户的代码,

public static RestResponse accountsClientLogin(String accountType, String email, String passwd, String service, String source) throws IOException {
String apiKey = GoogleAccountsServiceAuthenticator.getApiKey();
String[][] pathParams = new String[][]{};
String[][] queryParams = new String[][]{{"accountType", accountType}, {"Email", email}, {"Passwd", passwd}, {"service", service}, {"source", source}};
RestConnection conn = new RestConnection("https://www.google.com/accounts/ClientLogin", pathParams, null);
sleep(1000);
return conn.post(null, queryParams);
}

上面的代码非常适合我,但随着 Google 从 OAuth1 转向 OAuth2,我也必须转向 OAuth2

我很困惑如何使用 OAuth2 执行上述操作。我浏览了很多链接,但都是特定于应用程序的,我想使用emailId密码来验证用户,就像我在应用程序的早期版本中所做的那样。如何从 OAuth1 迁移到 OAuth2

最佳答案

看起来您正在使用 ClientLogin 而不是 OAuth 1.0。我建议切换到 OAuth 2.0。您可以使用 Apache Oltu 库来支持 OAuth 2.0。如果您打算这样做,我可以帮助您提供示例代码。

关于java - 如何使用 OAuth2 验证用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29341904/

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