如何在android中上传图片和视频到fb账号?
你能给我一些解决这个问题的建议吗?
我可以使用下面的代码在FB帐户中发布状态。

AsyncFacebookRunner mAsyncFbRunner = new AsyncFacebookRunner(mFacebook);
        Bundle params = new Bundle();
        params.putString("message", review);
        params.putString("picture", "http://twitpic.com/show/thumb/6hqd44");
        mAsyncFbRunner.request("me/feed", params, "POST",
                new WallPostListener());

提前谢谢

最佳答案

试试看——
上传图片,

 Bundle params = new Bundle();

 params.putByteArray("picture", <image in bytes>);
 params.putString("message", "Have fun");

 mAsyncRunner.request("me/photos", params, "POST", new SampleUploadListener());

上传视频,
Bundle params = new Bundle();

param.putString("filename", <dataName>);
param.putByteArray("video", <data in bytes>);

 mAsyncRunner.request("me/videos", param, "POST", new SampleUploadListener());

10-05 17:53
查看更多