Thinktecture IdentityModel获取会话令牌

时间:2013-08-15 23:48:41

标签: curl asp.net-web-api thinktecture-ident-model

使用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 }

为什么会发生这种情况的任何想法?

1 个答案:

答案 0 :(得分:0)

我不得不拨打http://www.website.com/api/controller/token来获取会话令牌。