Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

  1. Should I use FormsAuthentication.SetAuthCookie() to create the secure cookie?
  2. Is this secure?
  3. Or do I authenticate users be some other means (Facebook, Twitter, Basic, etc)?
share|improve this question

1 Answer

up vote 0 down vote accepted

You could actually use WePay as your Auth mechnaism. Make sure you checkout the C# SDK here: https://github.com/bradoyler/WePayASPNet

Yes, you would just have to call FormsAuthentication.SetAuthCookie('wepayusers email or auth token') after the wepay login callback. Good luck.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.