我已经创建了AWS API-网关,并且尝试使用Postman上传图像,但是收到错误多部分:未找到边界。
我尝试了以下解决方案来解决此问题,而我为API创建了如下模型:
Model name: fileupload
Content type: image/png
Model schema:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "UserAccountUpdate",
"type": "object",
"properties": {
"user": {
"type": "object",
"properties": {
"avatar": { "type": "string" },
"username": { "type": "string" }
}
}
}
}
但是,这没有用。
我希望我的图片能够上传,但会收到错误多部分:未找到边界。谢谢。请帮助我解决此问题。