here you go this is how i do it, it works for me , sorry just edited for else for if they are logged in
if(!fb.isSessionValid())
{try{
fb.authorize(GLGame.this,new String[] {"publish_stream"}, new DialogListener(){
@Override
public void onFacebookError(FacebookError e)
{
Toast.makeText(GLGame.this, "Problem with Facebook", Toast.LENGTH_SHORT).show();
}
@Override
public void onError(DialogError e)
{
Toast.makeText(GLGame.this, "Error", Toast.LENGTH_SHORT).show();
}
@Override
public void onComplete(Bundle values)
{
Log.d("Tests", "Testing graph API wall post");
try {
String response = fb.request("me");
Bundle parameters = new Bundle();
parameters.putString("message", here);
parameters.putByteArray("picture", data);
response = fb.request("me/photos", parameters, "POST");
Log.d("Tests", "got response: " + response);
if (response == null || response.equals("") ||
response.equals("false")) {
Log.v("Error", "Blank response");
}
} catch(Exception e) {
e.printStackTrace();
}
Toast.makeText(GLGame.this, "Posted to Facebook", Toast.LENGTH_SHORT).show();
}
@Override
public void onCancel()
{
}
});}catch(NoClassDefFoundError e){
Toast.makeText(GLGame.this, "No Facebook Exists", Toast.LENGTH_SHORT).show();
}
//login in to facebook
}else{
Log.d("Tests", "Testing graph API wall post");
try {
String response = fb.request("me");
Bundle parameters = new Bundle();
parameters.putString("message", here);
parameters.putByteArray("picture", data);
response = fb.request("me/photos", parameters, "POST");
Log.d("Tests", "got response: " + response);
if (response == null || response.equals("") ||
response.equals("false")) {
Log.v("Error", "Blank response");
} }catch(Exception e) {
e.printStackTrace();
}}
im going to elaborate a little the data is a bytestream photo like this
ByteArrayOutputStream baos = new ByteArrayOutputStream();
if(custom == 0)
GameOverScreen.finalbitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
else if(custom == 1)
GameOverScreenCustom.finalbitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
data = baos.toByteArray();
final String here = "Moves: " + GameOverScreen.moves + " " + "Time: " + GameOverScreen.time;