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