GoogleCredential 在 Spring Boot 中已弃用

发布于 2025-01-11 10:37:54 字数 526 浏览 0 评论 0原文

我到处寻找已弃用的 GoogleCredential 的新实现,但在我的用例中似乎没有任何效果:

我们正在创建一个 flutter 应用程序作为客户端,并创建 Spring Boot 应用程序作为 Rest API,我们用于发送从API 的客户端 (package:google_sign_in) 通过此行从 google api 获取配置文件信息:

GoogleCredential credential = new GoogleCredential().setAccessToken(accessToken);
Oauth2 oauth2 =
    new Oauth2.Builder(new NetHttpTransport(), new JacksonFactory(), credential)
        .build();
Userinfo userinfo = oauth2.userinfo().get().execute();

但问题是 GoogleCredential 和 JacksonFactory 现已弃用。 谢谢你的建议。

I have looked everywhere about a new implementation of the deprecated GoogleCredential but nothing seems to work in my use case:

We are creating a flutter application as the client and Spring Boot application as the Rest API and we are used to send the access token retrieved from the client (package:google_sign_in) to the API to go throught this lines to get the profile information from google api:

GoogleCredential credential = new GoogleCredential().setAccessToken(accessToken);
Oauth2 oauth2 =
    new Oauth2.Builder(new NetHttpTransport(), new JacksonFactory(), credential)
        .build();
Userinfo userinfo = oauth2.userinfo().get().execute();

but the issue is that GoogleCredential and JacksonFactory are now depricated.
thank you for your advice.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文