Hello everyone.
I have implemented security for my web api (individual accounts) as discussed
here.
I have hosted the website on godaddy (shared hosting) and its working fine.
When I ask for token by using API, I get the token with expiration date of within 15 days. I set this in "StartupAuth.cs" using
AccessTokenExpireTimeSpan = TimeSpan.FromDays(15),
e.g.:
{
"access_token":"codswallop11token.....",
"token_type":"bearer",
"expires_in":1209599,
"userName":"user@example.com",
".issued":"Wed, 11 Feb 2015 01:00:00 GMT",
".expi ...
Go to the complete details ...