英文:
How to signup auth0 users to flutter app using custom UI?
问题
我想在我的Flutter应用程序中添加Auth0身份验证,但当我查看了他们的文档并在各处搜索时,他们显示了他们的Auth0用户界面,但我想要使用自定义用户界面进行身份验证。我有一个带有Auth0的Express后端,如何使用Express服务器对用户进行身份验证或注册。
我尝试阅读他们的文档,但文档中只显示了登录的身份验证,但我想要在我的Flutter前端中使用自己的自定义UI来创建用户。
英文:
I want to add auth0 authentication to my flutter app but when I checked their docs and searched everywhere they show their auth0 ui but I want to use my custom UI for authentication. I have a express backend with auth0 how can I authenticate or signup user using the express server.
I tried reading their docs but in the docs they show authentication only for login but I want to create user using my flutter frontend using my own custom UI
答案1
得分: 1
你可以尝试使用这个包,
https://pub.dev/packages/auth0/versions/2.2.0-beta1
https://pub.dev/packages/auth0/versions/2.2.0-beta1
这个包基于Auth0的REST API。你可以使用它来构建自定义的用户界面。
或者,
你可以使用Auth0的REST API。
英文:
You can try this package,
https://pub.dev/packages/auth0/versions/2.2.0-beta1
https://pub.dev/packages/auth0/versions/2.2.0-beta1
This package is based on Auth0 REST APIs. You will able to build custom UIs using it.
Or,
You can make use of Auth0 REST APIs.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论