I'd like to use WePay.com for authentication and authorization using OAuth 2.0 and ASP.NET MVC 4 Web API.
I was reading through their tutorials online here and was thinking do I just go through these steps and store the access token in the database along with their user_id from WePay.
- Should I use
FormsAuthentication.SetAuthCookie()to create the secure cookie? - Is this secure?
- Or do I authenticate users be some other means (Facebook, Twitter, Basic, etc)?