JA Plus 开发者文档 JA Plus 开发者文档
首页
📖 白皮书 (opens new window)
  • 名词解释
  • 快速开始

    • 使用jap-simple
    • 使用jap-social
    • 使用jap-oauth2
    • 使用jap-oidc
    • 使用jap-sso
    • 使用jap-mfa
    • 使用jap-http-api
    • 使用jap-ldap
    • 错误代码
  • IDS

    • 简介
    • 快速开始
    • 自定义scope
    • 自定义登录页面
    • 自定义确认授权页面
    • 自定义缓存
    • 自定义Token加密密钥
    • 使用PKCE模式
    • 自动授权
    • 错误代码
  • starter

    • jap-spring-boot-starter
    • jap-simple-spring-boot-starter
    • jap-social-spring-boot-starter
    • jap-oauth2-spring-boot-starter
    • jap-oidc-spring-boot-starter
  • jap-ids的demo
  • 前后端分离架构中使用JAP
  • SpringBoot中使用JAP
  • 问题反馈
  • 项目问题
  • 异常问题
  • 功能问题
  • 数据看板🔥
  • 贡献指南
  • 行为准则
  • 用户权益
  • 贡献者们
  • 社区配套 (opens new window)
  • 教程
  • 投稿
  • 资讯
  • 关于
  • 友情链接
  • 捐赠列表
  • 其他开源
  • 更新记录
收藏
GitHub (opens new window)

FuJie Team

以开源的形式赋能开发者. Just auth into any app.
首页
📖 白皮书 (opens new window)
  • 名词解释
  • 快速开始

    • 使用jap-simple
    • 使用jap-social
    • 使用jap-oauth2
    • 使用jap-oidc
    • 使用jap-sso
    • 使用jap-mfa
    • 使用jap-http-api
    • 使用jap-ldap
    • 错误代码
  • IDS

    • 简介
    • 快速开始
    • 自定义scope
    • 自定义登录页面
    • 自定义确认授权页面
    • 自定义缓存
    • 自定义Token加密密钥
    • 使用PKCE模式
    • 自动授权
    • 错误代码
  • starter

    • jap-spring-boot-starter
    • jap-simple-spring-boot-starter
    • jap-social-spring-boot-starter
    • jap-oauth2-spring-boot-starter
    • jap-oidc-spring-boot-starter
  • jap-ids的demo
  • 前后端分离架构中使用JAP
  • SpringBoot中使用JAP
  • 问题反馈
  • 项目问题
  • 异常问题
  • 功能问题
  • 数据看板🔥
  • 贡献指南
  • 行为准则
  • 用户权益
  • 贡献者们
  • 社区配套 (opens new window)
  • 教程
  • 投稿
  • 资讯
  • 关于
  • 友情链接
  • 捐赠列表
  • 其他开源
  • 更新记录
收藏
GitHub (opens new window)
  • 使用指南
  • 名词解释
  • 快速开始

    • 使用jap-simple
    • 使用jap-social
    • 使用jap-oauth2
    • 使用jap-oidc
    • 使用jap-sso
    • 使用jap-mfa
    • 使用jap-http-api
    • 使用jap-ldap
    • JAP 错误代码
  • IDS

  • starter

  • 指南
  • 快速开始
FuJie Team
2021-09-20

JAP 错误代码

异常代码 描述 原因 解决方案
200 Success - -
401 Not logged in. 未登录 请登录
500 An error occurred in the system, please refer to the error message. 参考具体异常信息 参考具体异常信息
1000 The user does not exist. 用户不存在 请检查 JapUserService 接口实现方法是否存在异常或者业务系统中是否存在该用户
1001 Passwords don't match. 密码错误 修改登录密码
1002 Illegal rememberme cookie. 记住我的 cookie 格式异常 检查 cookie,不可随便手动修改 cookie 内容
1003 Unable to save user information. 用户保存失败 请检查 JapUserService 接口实现方法是否存在异常
1004 AuthConfig in SocialStrategy is required. 第三方登录时未传 AuthConfig 检查 SocialStrategy 的参数
1005 AuthenticateConfig is required. 未传 AuthenticateConfig 检查 JapStrategy 接口的实现类中是否传递 AuthenticateConfig 的继承类参数
1006 OidcStrategy requires a issuer option. OIDC 登录时,缺少 issuer 配置 检查 OidcConfig 的参数是否传递完整
1007 Missing credentials 在使用 SimpleStrategy 时,账号密码未传 检查传递的参数是否完整
1008 The grant type is not supported by the authorization server, or the current client is not authorized for the grant type. 在使用 Oauth 时,grant type 不支持 检查传递的 grant_type 参数是否正确
1009 http api config error, please check 在使用 jap-http-api 时,配置文件异常 检查 HttpApiConfig 是否配置正确
1010 Incorrect username or password. 账号或密码错误 检查账号密码是否正确
2001 LDAP password encryption is not implemented. LDAP 密码加密方法未实现 目前 jap-ldap 已经适配了 ldap 的如下密码加密算法:clear、md5、sha、ssha、sha512、k5key、md5crypt、sha256crypt、sha512crypt。如果选择了其他加密算法,可能导致登录失败。
2002 LDAP password matching method is not implemented LDAP 密码匹配(验证)方法未实现 目前 jap-ldap 已经适配了 ldap 的如下密码加密算法:clear、md5、sha、ssha、sha512、k5key、md5crypt、sha256crypt、sha512crypt。如果选择了其他加密算法,可能导致登录失败。
2003 Illegal password encryption algorithm 非法的密码加密算法。当前登录用户的密码加密方式不属于(clear, k5key, md5, smd5, sha, ssha, sha512, sha256, ext_des, md5crypt, sha256crypt, sha512crypt 和 crypt) 可能 LDAP 的版本比较高,使用了新的密码加密方法
编辑 (opens new window)
Last Updated: 2021/11/02, 22:30:02
使用jap-ldap
IDS OAuth 2.0 服务端

← 使用jap-ldap IDS OAuth 2.0 服务端→

最近更新
01
经验总结:关于为 JAP 开发不同语言的 Demo 的总结
11-02
02
jap-spring-boot-starter 使用帮助
10-28
03
使用jap-ldap
10-25
更多文章>
Theme by Vdoing | Copyright © 2021-2022

友情链接:UniAdmin | 江如意的博客

Copyright © 2021-2040 FUJIE. All rights reserved. 北京符节科技有限公司版权所有 | 京ICP备2020044519号-4
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式