我需要使用c#的HttpClient将apk上传到hockeyApp,
上传apk的网址如下:
curl \
-F "status=2" \
-F "notify=1" \
-F "ipa=@hockeyapp.ipa" \
-H "X-HockeyAppToken: 4567abcd8901ef234567abcd8901ef23" \
https://rink.hockeyapp.net/api/2/apps/upload
我试图用c#做同样的事情:
var stream = await File.ReadAllBytesAsync(apkFilePath);
var bytes = new ByteArrayContent(stream);
bytes.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");
var multipartFormDataContent = new MultipartFormDataContent
{
//send form text values here
{new StringContent("2"), "status"},
{new StringContent("0"), "notify"},
// send file Here
{bytes, "ipa"}
};
var uri = "https://rink.hockeyapp.net/api/2/apps/upload";
multipartFormDataContent.Headers.Add("X-HockeyAppToken", "++token_here++");
var response = await _client.PostAsync(uri, multipartFormDataContent);
但是我(经过很长一段时间)得到的响应是422个不可处理的实体
答案 0 :(得分:0)
已解决,
问题出在边界
cUrl命令以boundary=xxxxxxxxxxx
的形式生成边界(不带引号)
但是multipartFormDataContent具有boundary="xxxxxxxxxxx"
形式(带引号)的边界
当我删除引号时,它工作正常:
// Fix boundary problem (boundary is quoted)
var boundary = multipartFormDataContent.Headers.ContentType.Parameters.First(o => o.Name == "boundary");
boundary.Value = boundary.Value.Replace("\"", string.Empty);
答案 1 :(得分:0)
因为Hockey App将被App Center取代,我在422响应中也遇到了同样的问题。所以我与支持人员联系,并获得了非常好的代码示例,也许会有所帮助。
// TODO: Update with your info
private static string apiKey = "<Your API Token>";
private static string uploadUrl = "https://api.appcenter.ms/v0.1/apps/<Owner Name>/<App Name>/release_uploads";
private static string releaseUrl = "https://api.appcenter.ms/v0.1/apps/<Owner Name>/<App Name>/release_uploads/";
private static string fileToUpload = "<Path to your IPA>";
private static string fileName = "<Your File Name>";
static async Task Main(string[] args)
{
// Get upload url
var client = new HttpClient();
var requestMessage = new HttpRequestMessage(HttpMethod.Post, uploadUrl);
requestMessage.Content = new StringContent("", Encoding.UTF8, "application/json");
requestMessage.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
requestMessage.Headers.Add("X-API-Token", apiKey);
var response = await client.SendAsync(requestMessage);
var value = await response.Content.ReadAsAsync<UploadResponse>();
Console.WriteLine($"Upload ID: {value.UploadId}");
Console.WriteLine($"Upload URL: {value.UploadUrl}");
// Upload file
var uploadRequestMessage = new HttpRequestMessage(HttpMethod.Post, value.UploadUrl);
HttpContent fileStreamContent = new StreamContent(File.OpenRead(fileToUpload));
using (var formDataContent = new MultipartFormDataContent())
{
formDataContent.Add(fileStreamContent, "ipa", fileName);
uploadRequestMessage.Content = formDataContent;
var uploadResponse = await client.SendAsync(uploadRequestMessage);
Console.WriteLine($"Upload Response: {uploadResponse.StatusCode}");
}
// Set to committed
var uri = $"{releaseUrl}{value.UploadId}";
var updateStatusMessage = new HttpRequestMessage(HttpMethod.Patch, uri);
updateStatusMessage.Content = new StringContent("{ \"status\": \"committed\" }", Encoding.UTF8, "application/json");
updateStatusMessage.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
updateStatusMessage.Headers.Add("X-API-Token", apiKey);
var updateResponse = await client.SendAsync(updateStatusMessage);
var releaseResponse = await updateResponse.Content.ReadAsAsync<ReleaseResponse>();
Console.WriteLine($"Release Response Id: {releaseResponse.ReleaseId}");
Console.WriteLine($"Release Response URL: {releaseResponse.ReleaseUrl}");