WebApi2模板用于创建用户角色

时间:2014-05-26 16:25:17

标签: c# asp.net-mvc asp.net-web-api2

我正在使用visual studio默认的web api 2模板。

我已成功注册用户:

http://localhost:49913/api/Account/Register
{
  "Email": "testuser@gmail.com",
  "Password": "Password123!",
  "ConfirmPassword": "Password123!"
}

我甚至可以抓住令牌。

http://localhost:57555/token
{
    "access_token": "8gRwMCGCPvw_zCn28023......",
    "token_type": "bearer",
    "expires_in": 1209599,
    "userName": "testuser@gmail.com",
    ".issued": "Mon, 26 May 2014 16:22:17 GMT",
    ".expires": "Mon, 09 Jun 2014 16:22:17 GMT"
}

虽然我如何使用用户角色。我看到它在数据库中生成了一个表,但我似乎无法弄清楚要做什么才能让它做角色。是否有任何人可以分享的教程?

0 个答案:

没有答案