When I create a project Asp.Net MVC
with Individual User Accounts
I can enter the application in this way:
var result = await SignInManager.PasswordSignInAsync(model.Email, model.Password, model.RememberMe, shouldLockout: false);
But I need to make login access to mobile applications as follows:
link: http://localhost:51836/token
header: content-type: application/x-www-form-urlencoded
body: [email protected]&password=123456&grant_type=password
How can I continue to login in this way and also make Web Api
available (in the same project Asp.Net MVC
) so that mobile devices log in and receive% access% to be able to access the Token
pages I have in application Web Api
?