I have searched, read the FB developer docs.

MVC 4, I incorporated OpenId.
Now I want to include FB login as well, just as Stackoverflow and some other site have implemented it.

Do I create my own JS file with sample code from FB developer?
OR
Use a third party tools, which I am not aware of what to use. I did look at OAuthClient (DotNetOpenAuth-4.0.0.11165), it could not run, there was a server error and could not debug as the source file was missing.

link|improve this question

69% accept rate
Clicking on Sign in with FB produces: HTTP 400 - Bad Request – Picflight Feb 6 at 18:13
The remote server returned an error: (400) Bad Request. – Picflight Feb 6 at 18:56
feedback

2 Answers

Facebook implements an older OAuth 2 spec than the latest DotNetOpenAuth beta does. To interop with Facebook, you should use the CTP of v3.5 of DotNetOpenAuth to avoid the 400 Bad Request error.

link|improve this answer
I get this as well using 3.5 ctp mentioned by Andrew in MVC project using github.com/mhamrah/Html5OpenIdTemplate project. – gsogoly Feb 11 at 21:30
Really? I just downloaded it to test it and it worked fine (the CTP -- I haven't tried the template @gsogoly referenced). – Andrew Arnott Feb 11 at 22:23
1  
Yeah, these 400 Bad Request errors have to do with me or anyone not properly going into the facebook apps account and setting the secure url. All the samples use a specific port localhost:xxxxx. In fb, it needs to be set that way prior to testing. Took a while to figure out. Thanks though. – gsogoly Feb 12 at 23:36
Ah, I forgot about that. Thanks for sharing. – Andrew Arnott Feb 16 at 4:14
feedback

In the latest release of DotNetOpenAuth (4.0.0.12084) Login with Facebook works fine.

In order to make Sample solution build: install Code Contracts: http://msdn.microsoft.com/en-us/devlabs/dd491992.aspx

And to make example with Facebook login working you need to

  1. Create your own App on Facebook
  2. Specify you local website Url in the App settings (in "Select how your app integrates with Facebook" section)
  3. Update Web.config (OAuthClient project) file with your App ID and App Secret.
  4. in DotNetOpenAuth.ApplicationBlock.Facebook.FacebookGraph change type of Id property from int to long
  5. Run OAuthClient project. It should work.

More details here: Facebook/ Twitter with dotnetopenauth?

Also read Release notes regarding OAuth 2.0 (http://www.dotnetopenauth.net/oauth/dotnetopenauth-4-0-released/) As far as I understand it's not yet stable, but I'm sill studying this. So far it works fine for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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