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.

My goal is to post pictures from android app to user's facebook wall without asking him to approve it.

I use the following code to publish a picture:

String comment = editText.getText().toString();

byte[] data;
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
data = baos.toByteArray();

Bundle postParams = new Bundle();
postParams.putString("message", comment);
postParams.putByteArray("picture", data);

Request.Callback callback = new Request.Callback() {
    public void onCompleted(Response response) {

        FacebookRequestError error = response.getError();
        if (error != null) {
            Toast.makeText(SendActivity.this, "Facebook post error.",
                    Toast.LENGTH_SHORT).show();
            Log.e(TAG, error.toString());
        } else {
            Toast.makeText(SendActivity.this, "Posted to facebook!",
                    Toast.LENGTH_LONG).show();
        }
    }
};

Request request = new Request(session, "me/photos", postParams,
        HttpMethod.POST, callback);

RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();

In facebook app settings I added two permissions: user_photos and publish_actions. The app is not in a sandbox mode.

When I use the app to upload a picture, it goes to an album named same to my app name, and there is a lable that this photos are uploaded from an app, so I need either to approve or to reject it. How can I post a picture without that "approval" stage?

share|improve this question

1 Answer

I think you need the publish_stream permission (not publish_action).

See https://developers.facebook.com/docs/reference/api/user/#photos

share|improve this answer
Is there any prerequisites to add this permisson? Somehow it is not displayed when I try to add it. – Maxim Efimov Mar 7 at 3:16
How are you adding it to your session? Are you calling session.requestNewPublishPermissions? – Ming Li Mar 7 at 17:44
Finally I managed to add the permission. But it does not solve my problem. – Maxim Efimov Mar 12 at 6:22

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.