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 this class:

public class FacebookShare extends Activity implements DialogListener {
    Facebook facebook = new Facebook("199622693386109");
    Bitmap bitmap;
    byte [] data;

    @Override
    public void onCreate(Bundle savedInstanceState) 
    {    
        Bundle parameters = new Bundle();
        parameters.putString("message", "Test Photo");
        parameters.putByteArray("picture", data);
        facebook.dialog(this, "stream.publish", parameters, this);
        facebook.authorize(this, new DialogListener()
        {
            public void onComplete(Bundle values) {}
            public void onFacebookError(FacebookError error) {}
            public void onError(DialogError e) {}
            public void onCancel() {}

        });
    }
}

but if I run this code, my app crashes. Please help.

share|improve this question
plz add your log .... – CapDroid Apr 27 '11 at 9:34
ndroid.app.ActivityThread.main(ActivityThread.java:4363) 04-27 15:05:49.716: ERROR/AndroidRuntime(2595): at java.lang.reflect.Method.invokeNative(Native Method) 04-27 15:05:49.716: ERROR/AndroidRuntime(2595): at java.lang.reflect.Method.invoke(Method.java:521) 04-27 15:05:49.716: ERROR/AndroidRuntime(2595): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860) – Rajan Apr 27 '11 at 9:42
are you using facebook API..? – CapDroid Apr 27 '11 at 9:45
yes i have send photo in facebook from live image url but i have to upload photo from gellery i have try but not succeded. – Rajan Apr 27 '11 at 9:49
see my answer... – CapDroid Apr 27 '11 at 10:10

1 Answer

parameters.putByteArray("picture", data);

data is your byte array of image....

and follow this link i did answer in this question....

share|improve this answer
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – PearsonArtPhoto Nov 14 '12 at 1:59

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.