我正在尝试使用 TestFlight 的上传 API 来自动化构建。这是他们的文档:https ://testflightapp.com/api/doc/
这是我测试过的极简主义 curl 命令行请求:
.\curl.exe http://testflightapp.com/api/builds.json
-F file=@MyFileName.ipa
-F api_token='myapitoken' -F team_token='myteamtoken'
-F notes='curl test'
我尝试将其转换为 C#,如下所示:
var uploadRequest = WebRequest.Create("http://testflightapp.com/api/builds.json") as HttpWebRequest;
uploadRequest.Method = "POST";
uploadRequest.ContentType = "multipart/form-data";
var postParameters = string.Format("api_token={0}&team_token={1}¬es=autobuild&file=", TESTFLIGHT_API_TOKEN, TESTFLIGHT_TEAM_TOKEN);
var byteParameters = Encoding.UTF8.GetBytes(postParameters);
var ipaData = File.ReadAllBytes(IPA_PATH);
uploadRequest.ContentLength = byteParameters.Length + ipaData.Length;
var requestStream = uploadRequest.GetRequestStream();
requestStream.Write(byteParameters, 0, byteParameters.Length);
requestStream.Write(ipaData, 0, ipaData.Length);
requestStream.Close();
var uploadResponse = uploadRequest.GetResponse();
不幸的是,GetResponse()
我得到了一个(500) Internal Server Error
并且没有更多信息。
我不确定我的 postParameters 中的数据是否应该用'
s 包装——我已经尝试过两种方式。我也不知道我的内容类型是否正确。我也试过application/x-www-form-urlencoded
,但没有任何效果。
非常感谢任何帮助。