本帖最后由 James.Lv 于 2023-1-5 18:05 编辑
登录API客户端管理 登录api代码示例
通过postman调用生成token ,生成对应的安全自定义程序。 请求参数中:client_id,client_secret 为 Client Management 中所生成内容. 具内容参考 登录API客户端管理 默认信息有: client_id:integration client_secret:eunGKas3Pqd6FMwx9eUpdS7xmz 后期可以自行设置修改。 请求截图:
②代码请求如下: - fetch("http://localhost:51980/connect/token", {
- "method": "POST",
- "headers": {
- "Content-type": "application/x-www-form-urlencoded"
- },
- "body": "grant_type=password&username=admin&password=admin&client_id=integration&client_secret=eunGKas3Pqd6FMwx9eUpdS7xmz"
- }).then(function(res){
- res.json()
- .then(function(data){
- console.log(data)
- });
- })
复制代码至此,已经可以获取到token了,获取后可以直接登录访问。 http://localhost:51980/integration?token=生成的token
通常在使用中:会存在多级组织 那么存在组织的该如何去设置呢?请看下图:
组织层级
此处不过多赘述,看图即可意会
|