I want to create a responsive website that will work in all devices. Front end is HTML/CSS/JS and I am going to create bunch of APIs which will interact with database and do all the business logic and data fetch required.
I want to implement oAuth. oAuth for the front end's communication with my REST APIs. Why? I potentially see a need for more external parties to access my REST APIs in future.
How can I do this without MVC or seesion. Without MVC I suppose I might end up storing the site key, secret and auth id in cookie. How dangerous is it? Please let me know.
Thanks in advance.