I was thinking in develop a mobile app, integrated with and old Web App.
My first idea is use PhoneGap (with the new support on VS 2013) and REST WebApi Service.
The idea is to have my web app with registration, login, etc (using ASP.NET Identity). And the Mobile app with registration, login, etc (using a wrapper or something like ASP.NET Identity with token authentication) Basically mirror the functionality of the web app on my mobile app (only with the authentication and authorization differences).
So far so good.
But searching on the net I don't find any good example to integrate with my asp.net identity module. At the moment I know the mobile App's doesn't support cookie, so the idea is use the "token authentication". But I cannot find a good example to implement this and complement with my web app user database.
There is a tutorial or sample project like my requirement? And what is the best approach to develop this?
Thanks in advance.