'正在尝试使用 DHC(链接)发送 HTTP POST 请求。我需要发送以下请求
POST /Users HTTP/1.1
Host: example.com
Accept: application/json
Content-Type: application/json
Authorization: Bearer h480djs93hd8
Content-Length: ...
{
"schemas":["urn:scim:schemas:core:1.0"],
"userName":"bjensen",
"externalId":"bjensen",
"name":{
"formatted":"Ms. Barbara J Jensen III",
"familyName":"Jensen",
"givenName":"Barbara"
}
}
使用承载授权。但我无法为 Bearer 设置授权,它只显示“基本”作为授权。如何在此处设置对 Bearer 的授权?