UploadFile uploadFile = this.getFile("upfile","wxVideo"); File file=uploadFile.getFile(); String title=getPara("title"); String introduction=getPara("introduction"); ApiResult apiResult=MediaApi.addMaterial(file, title, introduction);
我用上面实现文件上传,返回结果为
apiResult:{"errcode":41005,"errmsg":"media data missing hint: [pLkH2a0414e565]"}
41005:缺少多媒体文件数据
标题信息与描述都有,是不是UploadFile方法转换成File文件后,content-type、fileName和fileLength等信息没有了。