I know this question has been asked a lot of times, but still I am facing this problem :( I am trying to upload photo on facebook wall. I am using the following code, But this does notwork for me. Can anyone please tell me what the problem is?
if (fbcheck.isChecked()) {
final Facebook facebook = new Facebook("208732799225759");
facebook.authorize(
AddPhoto.this,
new String[] { "user_photos,publish_checkins,publish_actions,publish_stream" },
new DialogListener() {
// @Override
public void onComplete(Bundle values) {
byte[] data = null;
Bitmap bi = BitmapFactory.decodeFile(filePath);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bi.compress(Bitmap.CompressFormat.JPEG, 100,
baos);
data = baos.toByteArray();
Bundle params = new Bundle();
params.putString(Facebook.TOKEN,
AccessTokens.fbaccesstoken);
params.putString("method", "photos.upload");
params.putByteArray("picture", data);
AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(
facebook);
mAsyncRunner.request("me/photos", params,
"POST", new SampleUploadListener(),
null);
Toast.makeText(getApplicationContext(),
"Image Posted on Facebook.",
Toast.LENGTH_SHORT).show();
}
// @Override
public void onFacebookError(FacebookError error) {
System.out.println("ERROR=" + error.toString());
}
// @Override
public void onError(DialogError e) {
System.out.println("ERROR=" + e.toString());
}
// @Override
public void onCancel() {
}
});
}
and
public class SampleUploadListener extends BaseKeyListener implements
RequestListener {
public void onComplete(final String response, final Object state) {
try {
// process the response here: (executed in background thread)
System.out.println("RESPONSE=" + response.toString());
JSONObject json = Util.parseJson(response);
final String src = json.getString("src");
// then post the processed result back to the UI thread
// if we do not do this, an runtime exception will be generated
// e.g. "CalledFromWrongThreadException: Only the original
// thread that created a view hierarchy can touch its views."
} catch (JSONException e) {
System.out.println("ERROR=" + e.toString());
} catch (FacebookError e) {
System.out.println("ERROR=" + e.toString());
}
}
public void onFacebookError(FacebookError e, Object state) {
// TODO Auto-generated method stub
}
public Bitmap getInputType(Bitmap img) {
// TODO Auto-generated method stub
return img;
}
// @Override
public int getInputType() {
// TODO Auto-generated method stub
return 0;
}
// @Override
public void onIOException(IOException e, Object state) {
// TODO Auto-generated method stub
}
// @Override
public void onFileNotFoundException(FileNotFoundException e,
Object state) {
// TODO Auto-generated method stub
}
// @Override
public void onMalformedURLException(MalformedURLException e,
Object state) {
// TODO Auto-generated method stub
}
}
The AccessTokens.fbaccesstokens is the Facebook Access Token that i am getting from my server, and there is no problem with the access token because I am able to get the data from Facebook using that token. If i replace the "AccessTokens.fbaccesstokens" with "facebook.getAccessToken()" still it dosent work. I am getting no errors in this code but still its not uploading images to facebook wall. For a couple of seconds, my facebook app opens up a blank screen with loading and then disappears and my app screen returns. But no upload takes place. Can anyone please help?? I found this similar question here.
-Thanks in advance