Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)
{}
});
share|improve this question
1  
why not try and implement the new Facebook Android SDK 3.0? – thepoosh Feb 12 at 9:06
any tutorial or usefull link to implement? – user2064024 Feb 12 at 9:29
the one on the website – thepoosh Feb 12 at 9:29

closed as not a real question by Igy, SztupY, Steven Penny, Bill the Lizard Feb 13 at 3:59

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.