我想更新 SendBird 的用户资料,因为我正在打电话
放置 https://{region_identifier}.sendbird.com/v3/users/{user_id}
网址
并将请求正文传递为
{
"nickname": "Johnster",
"profile_url":"https://sendbird.com/main/img/profiles/profile_02_512px.png",
"issue_access_token": true
}
这里profile_url是字符串类型,但是如果有人从图库中选择图像或通过相机捕获,在这种情况下我们会得到位图数据,我正在将位图转换为Base64String
但不被 api 接受。
我如何将相机或画廊拍摄的图像作为字符串类型传递?