有赞新零售社区

发帖
API使用问题»C#图片上传时遇到问题

[API调用-商品/交易] C#图片上传时遇到问题

夏意识 02-27 425 浏览 3 评论 | 只看楼主 [打印]
请求地址https://open.youzanyun.com/api/y ... rm.img.upload/3.0.0,参数image尝试过使用本地文件地址(c:\a.jpg),以及把图片转成Base64编码进行上传,都返回"err_msg":"系统异常","err_code":5001
请问C#怎么上传图片文件并取得返回的image_id

用手机打开
收藏 ··· 回复
    尊敬的有赞用户 您好,我们已收到您的问题,并已安排相关技术支持正在处理中,请耐心等待。您可以关注之前预留的邮箱gzwellbest@foxma注意问题解决进度提醒邮件。

      这个是个文件对象,在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);
                  }
              }
          }
      }

      1跳至
      您需要登录后才可以回帖 登录 | 立即注册

      本版积分规则

      复制链接
      新浪微博
      QQ空间
      微信扫码
      • 回复

      • 评分

      客服工作时间是9:00-18:00,客服妹子当前不在线,若不能及时回复请谅解。试试右上角的搜索吧,论坛有丰富的经验贴、公告贴,相信一定能够帮到您~

      复制成功