英文:
Custom Rest Api Java Authentication using Firestore
问题
我在思考如何创建一个 Java REST API,在其中有可能创建类似于 "signUp" 和 "signIn" 的用户身份验证到 Firestore(使用令牌进行验证)。通过支持使用端点来实现,例如当提供了 API 链接时,可以通过 Postman、Swift 或 Android 应用访问这些端点。
英文:
I was wondering how to create a java rest api where there is possibility to create something like a "signUp" and "signIn" user authentication to firestore (given it tokens). Supporting it with endpoints which can be accessed with for example postman or swift or android app when the api link is provided.
答案1
得分: 0
如果我正确理解了您的问题,您想要构建一个REST API,该API在内部针对Firestore进行身份验证?这绝对可以通过使用用于身份验证的Firebase REST API以及用于管理访问的Java绑定来实现。
英文:
If I understood your question correctly, you would like to build a REST API which internally authenticates against Firestore? This can definitely be done by exposing the Firebase REST API for authentication with the Java binding for admin accesses.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论