繁体   English   中英

使用图形api在Facebook组上发布照片

[英]Post photo on Facebook group using graph api

我正在为一个Facebook群组开发Android应用程序。 使用图形API,我可以轻松发布文本状态,但是当我上传照片时,它会返回错误说明

(#100) The picture is not properly formatted

如果我使用相同的代码发布到我的墙上,照片上传工作正常。

这是API限制还是有单独的方法将照片上传到群组?

以下是我的代码:

Request photoRequest = Request.newUploadStagingResourceWithImageRequest(session, bitmap, new Request.Callback() {
        @Override
        public void onCompleted(Response response) {
            if (mProgress != null && mProgress.isShowing())
                mProgress.dismiss();

            if (response.getError() == null) {
                Toast.makeText(NewPostActivity.this, "Successfully shared on the group", Toast.LENGTH_SHORT).show();
                finish();
            } else {
                Toast.makeText(NewPostActivity.this, "Facebook sharing error: " + response.getError().getErrorMessage(), Toast.LENGTH_SHORT).show();
            }

        }
    });
    Bundle params = photoRequest.getParameters();
    if(message != null) {
        params.putString("message", message);
    }
    if(imageBytes != null) {
        params.putByteArray("picture", imageBytes);
    }
    photoRequest.setParameters(params);
    photoRequest.setHttpMethod(HttpMethod.POST);
    photoRequest.setGraphPath(Constants.URL_FEEDS);
    photoRequest.executeAsync();

编辑我正在使用Graph API v2.3

似乎可以在一组中发布照片。

您可以从以下路径向照片边缘发出POST请求:

/ {GROUP_ID} /照片

发布到此边缘时,将创建照片。

链接返回类型

Struct {
    id: numeric string,
    post_id: token with structure: Post ID,
    }

似乎对/<group-id>/feedPOST请求不允许上传照片(否则适用于/me/feed )。 我终于按照建议使用了/<group-id>/photos edge。 以下是我的代码 - 希望它有助于一些:

Request photoRequest = Request.newUploadStagingResourceWithImageRequest(session, bitmap, new Request.Callback() {
        @Override
        public void onCompleted(Response response) {
            if (mProgress != null && mProgress.isShowing())
                mProgress.dismiss();

            if (response.getError() == null) {
                Toast.makeText(NewPostActivity.this, "Successfully shared on the group", Toast.LENGTH_SHORT).show();
                finish();
            } else {
                Toast.makeText(NewPostActivity.this, "Facebook sharing error: " + response.getError().getErrorMessage(), Toast.LENGTH_SHORT).show();
            }

        }
    });

    Bundle params = photoRequest.getParameters();
    if(message != null) {
        params.putString("message", message);
        photoRequest.setGraphPath(Constants.URL_FEEDS);
    }
    if(imageBytes != null) {
        params.putByteArray("picture", imageBytes);
        photoRequest.setGraphPath(Constants.URL_PHOTOS);
    }
    photoRequest.setParameters(params);
    photoRequest.setHttpMethod(HttpMethod.POST);
    photoRequest.executeAsync();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM