找不到多部分边界-AWS API Gateway

时间:2019-07-15 12:43:16

标签: amazon-web-services aws-api-gateway api-gateway

我已经创建了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" }
     }
   }
  }
}

但是,这没有用。

我希望我的图片能够上传,但会收到错误多部分:未找到边界。谢谢。请帮助我解决此问题。

1 个答案:

答案 0 :(得分:0)

转到API的“ API网关设置”标签,然后将“ multipart / form-data”添加到“二进制媒体类型”部分:

enter image description here

您必须使用HTTP代理集成,对于“内容处理”,请选择“传递”。