使用Thinktecture IdentityModel获取会话令牌的方法是http://www.website.com/api/token。但我收到并错误“响应状态代码并不表示成功:404(未找到)。”使用浏览器时以及以下代码。
var credentials = new NetworkCredential("admin", "password");
var handler = new HttpClientHandler { Credentials = credentials };
var client = new HttpClient(handler) {BaseAddress = new Uri("http://www.website.com/")};
var response = await client.GetAsync("api/token");
response.EnsureSuccessStatusCode(); // Throw on error code.
var accountInformationJson = await response.Content.ReadAsStringAsync();
然而,当我尝试使用CURL时 curl --user admin:password --get http://www.website.com/api/token
我好像回来了json会议 { “access_token”:“hfsdhfhfjhdfhds8f9jsdhr9843hrf.shf789qy34rjhf9awyfw8ehf .....”, “expires_in”:36000.0 }
为什么会发生这种情况的任何想法?