6

I have implemented the sample application provided by DotNetOpenAuth as instructed here.

As you can see below, this is requiring that the user installs this facebook application.

enter image description here

I simply want to allow users to use their facebook login for my vanilla ASP.NET website.

Is there some way to prevent them from having to install a facebook application?

Update: Stackexchange Facebook login doesn't have an "install" button. It simply has a dialog requesting various permissions. This is much preferred in my case.

enter image description here

Community
  • 1
  • 1
Brian Webster
  • 30,033
  • 48
  • 152
  • 225

1 Answers1

6

This will work until Facebook forces everybody to use the "Enhanced Auth Dialog"

You can fix this dialog by going into your advanced application settings:

enter image description here

Changing this setting will cause the dialog to appear as you suggested in your excellent question.

enter image description here

Brian Webster
  • 30,033
  • 48
  • 152
  • 225
  • Great answer Brian Webster. While correct for now, this will only work until they force all apps over to the new auth dialog. – bkaid Jan 27 '12 at 23:00