我使用Web api selef主机:
public class TestController : ApiController
{
[HttpPost]
public void Testp([FromBody]string title)
{
Console.WriteLine("Post");
}
}
这是简单的控制器 这是我的客户:
client.BaseAddress = new Uri("http://localhost:1010");
const string englishTitle = "TesteDelete";
var post = client.PostAsync("Test/Testp", new
{
title = englishTitle
}, new JsonMediaTypeFormatter());
var result = post.Result;
if (result.IsSuccessStatusCode)
{
}
else
{
string content = result.Content.ReadAsStringAsync().Result;
}
为什么我的结果是:
{StatusCode: 404, ReasonPhrase: 'Not Found', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
{
Date: Sun, 21 Apr 2013 12:00:03 GMT
Server: Microsoft-HTTPAPI/2.0
Content-Length: 165
Content-Type: application/json; charset=utf-8
}}
我的模型绑定器有一些错误
答案 0 :(得分:4)
我想你正在使用visual studio web服务器进行调试(按时钟排序)。此端口可以随时更改,因此我猜测它不再是您网址中指定的“1010”:
"http://localhost:1010"
也许您应该look here自动获取当前网址。
答案 1 :(得分:1)
如果您使用默认路由,则它是RESTful(通过HTTP动词,而不是RPC,按方法名称),因此您不应该发布到http://localhost:1010/Test/Testp
但http://localhost:1010/Test
您的操作签名需要一个字符串,但您正在POST一个匿名对象。 你的POST应该是这样的(注意我们只发送字符串):
var post = client.PostAsync("Test", englishTitle, new JsonMediaTypeFormatter());
答案 2 :(得分:1)
我发现我的问题是,如果我没有使用" /"来结束基URI并尝试将其预先挂起到client.PostAsync(..它不会工作。但如果我附加到基础uri它会这样,
std::map
工作,同时:
using (HttpClient client = new HttpClient(handler) { BaseAddress = new Uri("https://test.test.com/somepath/") })
var response = client.PostAsync("Broadcast/Order", content).Result;
没有。不知道为什么,但很高兴我很快就明白了!
答案 3 :(得分:0)
var url = URL;
var data = new FormUrlEncodedContent(new[] {
new KeyValuePair<string, string>("client_id", FRAppConfigKeys.GetValue("ClientId")),
new KeyValuePair<string, string> ("client_secret", FRAppConfigKeys.GetValue("ClientSecret")),
new KeyValuePair<string, string>("grant_type", FRAppConfigKeys.GetValue("GrantType") ),
new KeyValuePair<string, string>("username", FRAppConfigKeys.GetValue("UserName")),
new KeyValuePair<string, string> ("password", FRAppConfigKeys.GetValue("Password"))
}
);
HttpResponseMessage response = client.PostAsync(url, data).Result;
var result = response.Content.ReadAsStringAsync().Result;
Dictionary<string, string> tokenDictionary =
JsonConvert.DeserializeObject<Dictionary<string, string>>(result);
string token = tokenDictionary["access_token"];
我正面临着同样的问题。但是现在解决了。您可以使用此代码。确实会对您有帮助。