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 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

share|improve this question
Thank you...But I already had looked into those links...I got my code from this link : stackoverflow.com/questions/5168145/… – Antrromet Mar 9 '12 at 5:54
Did u check logcat for any exceptions during uploading? – Andro Selva Mar 9 '12 at 6:49
no there was no exception nothing. Also I am trying to print the RESPONSE, still i dont get anything. – Antrromet Mar 9 '12 at 7:43
was there any problem with login. were you able to login properly? – Andro Selva Mar 9 '12 at 7:47
I do not login into facebook, cause i already have the access token. – Antrromet Mar 9 '12 at 8:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.