As per the Authentication Documentation, I'm directing my user's to the following URL to initiate the authentication flow:
https://www.facebook.com/dialog/oauth?client_id=251747341532139&redirect_uri=https://www.facebook.com/connect/login_success.html
However, instead of the login page looking like:
... (i.e. like it does in the documentation and in other Apps I've created and used), it looks like this...

Does anyone know why?
I've tracked the redirects that the page makes, and it's as follows:
https://www.facebook.com/dialog/oauth?client_id=251747341532139&redirect_uri=https://www.facebook.com/connect/login_success.htmlhttps://www.facebook.com/connect/uiserver.php?app_id=251747341532139&method=permissions.request&display=page&next=https://www.facebook.com/connect/login_success.html&response_type=code&fbconnect=1https://www.facebook.com/login.php?api_key=251747341532139&skip_api_login=1&display=page&cancel_url=https://www.facebook.com/connect/login_success.html?error_reason=user_denied&error=access_denied&error_description=The+user+denied+your+request.&fbconnect=1&next=https://www.facebook.com/connect/uiserver.php?method=permissions.request&app_id=251747341532139&display=page&redirect_uri=https%253A%252F%252Fwww.facebook.com%252Fconnect%252Flogin_success.html&response_type=code&fbconnect=1&from_login=1&rcount=1
Application type is set to Native/Desktop, and I've set the App Integration to "Website".
If the language I'm using makes any difference, I'm using C#, and setting the Url of System.Windows.Form.WebBrowser.
displayparameter topopupwhen callingFB.login()in the Facebook JS SDK, but I honestly wouldn't know how to display it with a redirect. – MartinodF Aug 26 '11 at 20:11&display=popupat the end of the URL. Was it hard? No. Did I know it beforehand? No. Honestly, you could have just tried. – MartinodF Aug 26 '11 at 20:30popupparameter for the JS SDK because that's what I use, but the SDK just creates the same/dialog/oauthURL you wrote by hand with the that params. I didn't say that you were supposed to know that it would have worked, just that it was a matter of reading the docs and trying. Anyway, glad you solved it! – MartinodF Aug 26 '11 at 20:41