获取身份源连接列表(web 端)
开发中
GET
/api/v2/users/identity/conn-list
请求参数
Header 参数
x-authing-userpool-id
string
用户池 ID
示例值:
61b95d6c96d42670da568408
Authorization
string
Token
示例值:
Bearer sdfsdsfdfsdf
x-authing-app-id
string
应用 ID
示例值:
61b95d6c96d42670da568408
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://core.authing.cn/api/v2/users/identity/conn-list' \
--header 'x-authing-userpool-id: 61b95d6c96d42670da568408' \
--header 'Authorization: Bearer sdfsdsfdfsdf' \
--header 'x-authing-app-id: 61b95d6c96d42670da568408'
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
data
object
必需
authorizationUrl
string
认证地址
bindState
boolean
绑定状态
usernameInIdp
string
身份源中的用户名
userIdInIdp
string
身份源中的用户 ID
identifier
string
身份源标识
extIdpId
string
身份源 ID
authenticationType
string
身份源类型
name
string
身份源名称
logo
string
身份源图标
type
string
身份源类型
name_en
string
身份源英文名称
desc
string
身份源中文描述
desc_en
string
身份源英文描述
示例
{
"code": 0,
"message": "string",
"data": {
"authorizationUrl": "string",
"bindState": true,
"usernameInIdp": "string",
"userIdInIdp": "string",
"identifier": "string",
"extIdpId": "string",
"authenticationType": "string",
"name": "string",
"logo": "string",
"type": "string",
"name_en": "string",
"desc": "string",
"desc_en": "string"
}
}
修改于 2022-10-12 09:12:40