POST api/File/FileUploadByNetworkImage

文件上传(网络路径)

Request Information

URI Parameters

None.

Body Parameters

Collection of string

Request Formats

application/json, text/json

Sample:
[
  "sample string 1",
  "sample string 2"
]

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

文件上传(网络路径)

ResponseResultOfListOfNetworkImageResultDto
NameDescriptionTypeAdditional information
Status

boolean

None.

ErrorCode

string

None.

ErrorMessage

string

None.

Data

Collection of NetworkImageResultDto

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "ErrorCode": "sample string 2",
  "ErrorMessage": "sample string 3",
  "Data": [
    {
      "NetworkImageUrl": "sample string 1",
      "ImageIdentity": "sample string 2",
      "DisPlayImgUrl": "sample string 3"
    },
    {
      "NetworkImageUrl": "sample string 1",
      "ImageIdentity": "sample string 2",
      "DisPlayImgUrl": "sample string 3"
    }
  ]
}