i have to post message from my android app to facebook. i have added the facebook library with my project generated the hash key and inserted the hash key in develpomnt app form and got the APP Id. but when i give the login password to the facebook dialog i got the error on facebook dialog that "an error occured please try again later". i am using the following code after login control is not coming back on oncomplete function
facebook.authorize(MainActivity_myFb.this, new String[] {"publish_stream"},Facebook.FORCE_DIALOG_AUTH,new Facebook.DialogListener()
{
@Override
public void onCancel()
{
}
@Override
public void onComplete(Bundle values)
{
String acces_token = facebook.getAccessToken();
}
@Override
public void onError(DialogError error)
{}
@Override
public void onFacebookError(FacebookError fberror)
{}
});