|
这个是个文件对象,在java中 java.io.File 类型 = C#的System.IO.FileInfo 或 System.IO.File
代码示例仅供参考
using System;
using System.IO;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
// 1. 定义请求参数
string accessToken = "YOUR_ACCESS_TOKEN"; // 替换为您自己的 access_token
string apiEndpoint = "https://open.youzanyun.com/api/youzan.materials.storage.platform.img.upload/3.0.0";
string localFilePath = @"C:\123.jpg"; // 本地图片路径
// 2. 创建 HttpClient
using (var client = new HttpClient())
{
// 设置请求头
client.DefaultRequestHeaders.Add("access_token", accessToken);
// 3. 创建 MultipartFormDataContent
var content = new MultipartFormDataContent();
// 添加图片文件
if (File.Exists(localFilePath))
{
var fileStream = new FileStream(localFilePath, FileMode.Open, FileAccess.Read);
var fileContent = new StreamContent(fileStream);
fileContent.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");
content.Add(fileContent, "image", Path.GetFileName(localFilePath)); // "image" 是接口的字段名
}
else
{
Console.WriteLine("图片文件不存在,请检查路径!");
return;
}
// 添加可选参数(如 category_id)
content.Add(new StringContent("123444"), "category_id"); // 替换为实际的 category_id
// 4. 发送 POST 请求
HttpResponseMessage response = await client.PostAsync(apiEndpoint, content);
// 5. 获取并解析响应
if (response.IsSuccessStatusCode)
{
string responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine("上传成功!返回结果:");
Console.WriteLine(responseBody);
}
else
{
Console.WriteLine($"上传失败!状态码:{response.StatusCode}");
string errorResponse = await response.Content.ReadAsStringAsync();
Console.WriteLine("错误信息:" + errorResponse);
}
}
}
} |
|
|
|
|
|
|