> I am creating a Facebook application on Android > I trying to use Facebook client library called 'FBRocket' in my app > mentioned in below link. > http://wiki.developers.facebook.com/index.php/User:Android > > > But, Facebook login itself is failing. > When I test, it takes very long time to display the login screen. Once > login user name and password is entered and 'Connect' is pressed, it > displays error ‘Web Page not available..’ Login doesn't succeed.
In case you didn't see it, there's a warning about permissions on the FBRocket page: http://xeomax.net/fbrocket/ IMPORTANT: Many people have been experiencing difficulties with this alpha release, mainly concerning the login functionality. This has probably been caused by not adding the necessary permissions to your AndroidManifest.xml file. You need to add the following: <uses-permission android:name="android.permission.INTERNET" /> to your manifest file of your application in order to enable the embedded web-browser control to connect to the Facebook Connect authorisation mechanism. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

