通过 url 添加附件到 bug
我尝试使用此网址:
https://myPath.fogbugz.com/api.asp?cmd=new&sTitle=sometitle&ixProject=1&token=12345678910111213&FileName=C:\Users\John\Desktop\xxx.txt
并创建了问题,但附件没有。如何做到这一点?
I tried with this url:
https://myPath.fogbugz.com/api.asp?cmd=new&sTitle=sometitle&ixProject=1&token=12345678910111213&FileName=C:\Users\John\Desktop\xxx.txt
and the issue is created, but the attachment no. How to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 POST 而不是 GET,以
multipart/form-data
格式进行 POST,并以“file”类型和名称“File1”、“File2”、“File3”等传入文件,其中“nFileCount”参数设置为正在发送的文件总数。有关更多详细信息,请参阅 XML API 文档中的编辑案例部分。
You'll need to use POST rather than GET, POSTing in
multipart/form-data
format and passing in the files as type "file" and name "File1", "File2", "File3" etc, with a "nFileCount" parameter set to the total number of files being sent.Have a look at the Editing Cases section in the XML API docs for further details.