Skip to content

Commit

Permalink
Merge pull request #526 from haoxiuwen/doc-v2
Browse files Browse the repository at this point in the history
Remove Content Type for Retrieving User Attributes in Bulk
  • Loading branch information
haoxiuwen authored Dec 4, 2023
2 parents 104eefc + 6a097b0 commit 3b0cb08
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docs/document/server-side/userprofile.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,15 +225,14 @@ POST https://{host}/{org_name}/{app_name}/metadata/user/get

#### 请求 header

| 参数 | 类型 | 是否必需<div style="width: 80px;"></div> | 描述 |
| :-------------- | :----- | :--------------------------------------- | :------------------------------------------------------------------------------------------------------------------- |
| `Content-Type` | String || 内容类型。请填 `application/json`|
| `Authorization` | String || App 管理员的鉴权 token,格式为 `Bearer YourAppToken`,其中 `Bearer` 为固定字符,后面为英文空格和获取到的 app token。 |
| 参数 | 类型 | 是否必需<div style="width: 80px;"></div> | 描述 |
| :-------------- | :----- | :--------------------- | :--------------- |
| `Authorization` | String || App 管理员的鉴权 token,格式为 `Bearer YourAppToken`,其中 `Bearer` 为固定字符,后面为英文空格和获取到的 app token。 |

#### 请求 body

| 参数 | 类型 | 是否必需 | 描述 |
| :----------- | :---- | :------- | :------------------------------------------------------------------------- |
| :----------- | :---- | :------- | :-------------------- |
| `targets` | Array || 用户 ID 列表,最多可传 100 个用户 ID。 |
| `properties` | Array || 属性名列表,查询结果只返回该列表中包含的属性,不在该列表中的属性将被忽略。 |

Expand All @@ -258,7 +257,7 @@ POST https://{host}/{org_name}/{app_name}/metadata/user/get
```shell
# 将 <YourAppToken> 替换为你在服务端生成的 App Token

curl -X POST -H 'Content-Type: application/json' -H 'Authorization: Bearer <YourAppToken>' -d '{
curl -X POST -H 'Authorization: Bearer <YourAppToken>' -d '{
"properties": [
"avatarurl",
"ext",
Expand Down

0 comments on commit 3b0cb08

Please sign in to comment.