赞
踩
这个项目是用于理解 Auth0 在 react 项目中如何实现身份验证、授权和许可。
Auth0 作为身份认证云服务商,提供了一整套 SDK
和 API
便于 APP 开发者可以更加关注与业务逻辑实现。
history
对象. 具体详见 How do I access the history
object outside of componentuseAuth0
) 将 Context 暴露出来. 这样做的好处是使代码更加易读. Context 对象内容如下
useEffect
方法, 该方法将在组件 render 后调用, 其主要的功能如下:
Auth0Client
所需要的参数
audience
, 其值即为上面在 Auth0 的 dashboard 中新建的 API 中设置的 IdentifierSource: PKCE
code_verifier
and from this genrates a code_challenge
code_challenge
code_challenge
and redirects the user back to the application with an authorization code
, which is good for one use.code
and the code_vierifier
(created in step 2) to the Auth0 Authorization Server (/oauth/token endpoint).code_challenge
and code_verifier
.Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。