I have a button on my app when the user finish the game, he can public in the facebook, somebody can help me? I have this code but it's for publishing the app on facebook don't know if it works either:
MenuItem item = menu.findItem(R.id.menu_item_share);
ShareActionProvider myShareActionProvider = (ShareActionProvider) item.getActionProvider();
Intent myIntent = new Intent();
myIntent.setAction(Intent.ACTION_SEND);
myIntent.putExtra(Intent.EXTRA_TEXT, "texte");
myIntent.setType("text/plain");
myShareActionProvider.setShareIntent(myIntent);