I am developing an application in blackberry which requires the user's login through facebook. Fot that I search at Google and every body suggesting that use the sdk provide by sourceforge.net at https://sourceforge.net/projects/facebook-bb-sdk/. I downloaded the sdk and follow the pdf instrunction as follow.
1.Created a new project and also created a lib folder and copied the both .jar file 2.Added the jar and exported it to projected by going to property option for the project. 3.Next in MyScreen.java I write down the following as mentioned in PDF included in SDK
public final class MyScreen extends MainScreen
{
public MyScreen()
{
// Set the displayed title of the screen
setTitle("Facebook Login");
String NEXT_URL = "http://www.facebook.com/connect/login_success.html";
String APPLICATION_ID = // removed - application specific and should not be shared
String APPLICATION_SECRET = // removed - application specific and should not be shared
String[] PERMISSIONS = Facebook.Permissions.USER_DATA_PERMISSIONS;
ApplicationSettings as = new ApplicationSettings(NEXT_URL, APPLICATION_ID, APPLICATION_SECRET, PERMISSIONS);
Facebook fb = Facebook.getInstance(as);
}}
After that I run the program and gives the following error

I read at several forum and sites that it is quite easy to integrate Facebook login in Blackberry but I can not do that.Please suggest where I am missing .
Regards!