2

大家好,我是 android 开发的菜鸟,我正在尝试实现一项功能,该功能将允许用户在 Facebook 页面上发布消息,并可选择从设备 SD 卡上传图片/图像。

我正在使用 Facebook sdk 3.0

我设法让它工作,但不是在 Facebook 页面墙上,而是通过用户个人资料时间线。

提前致谢。

*编辑*

case REQUEST_PICK_IMAGE:
            if (resultCode == RESULT_OK) {
                imageUri = intent.getData();

                AsyncFacebookRunner mAsyncFbRunner1 = new AsyncFacebookRunner(mFacebook);
                Log.d(TAG, imageUri.toString() + " " + imageUri.getPath());
                Bundle params = new Bundle();
                try {
                    in = new FileInputStream(getRealPathFromURI(imageUri));
                    buf = new BufferedInputStream(in);
                    byte[] bMapArray= new byte[buf.available()];
                    buf.read(bMapArray);
                    params.putByteArray("picture", bMapArray);
                } catch (IOException e) {
                    e.printStackTrace();
                }
                params.putString("method", "photos.upload");
                params.putString("caption", "sample post via gallery");
                mAsyncFbRunner1.request("PAGE_ID" + "/feed", params, "POST", new PhotoUploadListener(), null);
            }
            break;
4

2 回答 2

0

以下代码对我有用。我正在使用最新的 Facebook SDK 3.0

showLoader(getResources().getString(R.string.sharing_on_facebook_wall));

Request.Callback callback= new Request.Callback() 
{
    public void onCompleted(com.facebook.Response response) 
    {
        hideLoader();

        FacebookRequestError error = response.getError();
        if (error != null) 
            Toast.makeText(getApplicationContext(), error.getErrorMessage(), Toast.LENGTH_SHORT).show();
        else 
            Toast.makeText(getApplicationContext(), "Posted successfully.", Toast.LENGTH_LONG).show();
    }
};

Session session = Session.getActiveSession();
Bundle postParams = new Bundle();

postParams.putString("name", "Title");
postParams.putString("link", "http://www.stackoverflow.com");
postParams.putString("description", "description");
postParams.putString("caption", "PictureTestApp");
postParams.putString("picture", imageUrl);

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

RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();
于 2013-05-02T05:41:19.043 回答
0

“我想做的是在 Facebook 页面上发布一条消息,其中包含手机内存或 SD 卡中的图片/图像。”

目前没有办法做到这一点。您可以从 SDCARD(而不是通过 URL)上传照片的唯一位置是特定相册。

于 2013-05-06T18:15:38.597 回答