5

我在应该调用我的 WebApis 之一的 Windows 应用商店应用程序中运行了以下代码:

using (var client = new HttpClient())
{
    var parms = new Dictionary<string, string>
        {
            {"vinNumber", vinNumber}, 
            {"pictureType", pictureType}, 
            {"blobUri", blobUri}
        };

    HttpResponseMessage response;

    using (HttpContent content = new FormUrlEncodedContent(parms))
    {
        const string url = "http://URL/api/vinbloburis";

        response = await client.PostAsync(url, content);
    }

    return response.StatusCode.ToString();
}

WebApi 代码如下所示:

[HttpPost]
public HttpResponseMessage Post(string vinNumber, string pictureType, string blobUri)
{
    var vinEntity = new VinEntity
        {
            PartitionKey = vinNumber,
            RowKey = pictureType, 
            BlobUri = blobUri
        };

    _vinRepository.InsertOrUpdate(vinEntity);

    return new HttpResponseMessage { Content = new StringContent("Success"), StatusCode = HttpStatusCode.OK };
}

使用 Fiddler,我观察到以下情况......这是请求的样子:

POST http://URL/api/vinbloburis HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Host: URL
Content-Length: 113
Expect: 100-continue

vinNumber=vinNumber&pictureType=top&blobUri=https%3A%2F%2Fmystorage.blob.core.windows.net%2Fimages%2Fimage.png

但是响应是一个错误,几乎没有/没有信息:

{"Message":"An error has occurred."}

我什至在本地尝试使用附加到 WebApis 的调试器,而我的 Post 方法永远不会捕获。

有人看到我在这里错过的东西吗?我觉得我正在看它,但没有看到它。我应该补充一点,我可以在通过查询字符串传递参数时调用 HttpGet 方法。现在问题只出在这个 HttpPost 上。

谢谢!

更新:根据人们的一些好评,我添加了更多细节。

我为 WebApis 配置了默认路由...

public static void Register(HttpConfiguration config)
{
    config.Routes.MapHttpRoute(
        name: "DefaultApi",
        routeTemplate: "api/{controller}/{id}",
        defaults: new { id = RouteParameter.Optional }
    );
}

因此,我认为 /URL/api/vinbloburis 应该可以工作。此外,如上所述,我目前正在使用 HttpGet。这是 Windows 应用商店应用程序调用 HttpGet WebApi 的工作原理......

using (var client = new HttpClient())
{
    using (var response = await client.GetAsync(uri))
    {
        if (response.IsSuccessStatusCode)
        {
            var sasUrl = await response.Content.ReadAsStringAsync();
            sasUrl = sasUrl.Trim('"');

            return sasUrl;
        }
    }
}

...它正在调用以下 WebApi ...

[HttpGet]
public HttpResponseMessage Get(string blobName)
{
    const string containerName = "images";
    const string containerPolicyName = "policyname";

    _helper.SetContainerPolicy(containerName, containerPolicyName);

    string sas = _helper.GenerateSharedAccessSignature(blobName, containerName, containerPolicyName);

    return new HttpResponseMessage
        {
            Content = new StringContent(sas),
            StatusCode = HttpStatusCode.OK
        };
}

我希望其他信息有帮助!

4

3 回答 3

2

我照原样复制了您的代码,但出现 404 错误。

我将签名更改为

public HttpResponseMessage Post(FormDataCollection data)

它奏效了。

你也可以这样做,

public HttpResponseMessage Post(VinEntity vinEntity)

模型绑定器将为您完成映射工作。

Rick Strahl 在这里有一篇关于这个问题的帖子http://www.west-wind.com/weblog/posts/2012/Sep/11/Passing-multiple-simple-POST-Values-to-ASPNET-Web-API

于 2012-10-09T00:41:33.820 回答
0

您是否在清单中打开了 Internet 网络?

于 2012-10-09T00:34:10.390 回答
0

这可能是跨域 Ajax 安全问题。在此处查看 JSONP 信息。=> http://json-p.org/

于 2012-10-09T00:35:02.613 回答