我想知道是否有可能,如果是这样,我可以如何传输原始图像数据,而不是在发布到我的Facebook墙壁时指定网络上的图像的URL?
我目前的工作代码有以下结果:
http://1.bp.blogspot.com/-klSLFEmvHy0/TxpPMIay0xI/AAAAAAAAAKQ/iLZv-QtmThc/s1600/fbpost.JPG (对不起,我没有足够的学分来嵌入图片,请打开网址: - )
对于标题,标题,链接等我想要的更多,但我的最终目标是使上面显示的心形图像是我的应用程序每次用户决定将结果发布到时生成的输出图像Facebook(内容在图像上动态生成)。我不想实现上传某些第三方服务器,然后共享该URL。
我看到周围的人引用这样的代码:
...
byte[] data = null;
Bitmap bi = BitmapFactory.decodeFile(imagePath);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bi.compress(Bitmap.CompressFormat.JPEG, 100, baos);
data = baos.toByteArray();
params.putByteArray(...
但这似乎是将照片直接上传到一张不是我想要的专辑。
到目前为止我的工作代码是:
private void loginAndPostToFacebook() {
mFacebook = new Facebook(FACEBOOK_APP_ID);
mFacebook.authorize(this, new String[] { "publish_stream" }, new DialogListener() {
@Override
public void onComplete(Bundle values) {
postOnWall();
}
@Override
public void onFacebookError(FacebookError error) {
L.t(getString(R.string.error_facebook_error) + ": " + error.getMessage());
}
@Override
public void onError(DialogError e) {
L.t(getString(R.string.error_facebook_error) + ": " + e.getMessage());
}
@Override
public void onCancel() {
}
});
}
public void postOnWall() {
Bundle params = new Bundle();
// Message
params.putString("message", "my msg");
// Name
params.putString("name", "app name");
// Caption
params.putString("caption", "caption");
// Description
params.putString("description", "description");
// Here's where I'd insert my dynamically generated image data...
params.putString("picture", "http://4.bp.blogspot.com/-VaNzm3xMOtk/TxpKzhxpdEI/AAAAAAAAAKI/08Kc5b4HW0Q/s1600/sexometer128x128neutral_icon.png");
// Link
params.putString("link", "http://www.stackoverflow.com");
try {
String response = mFacebook.request("me");
response = mFacebook.request("me/feed", params, "POST");
if (response == null || response.equals("") || response.equals("false")) {
L.t(getString(R.string.error_facebook_error) + ": blank response");
return;
} else if (response.toLowerCase().contains("error")) {
L.t(getString(R.string.error_facebook_error) + ": " + response);
return;
}
} catch(Exception e) {
L.t(getString(R.string.error_facebook_error) + ": " + e.getMessage());
return;
}
L.t(getString(R.string.success_posted_to_facebook));
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (mFacebook != null) {
mFacebook.authorizeCallback(requestCode, resultCode, data);
}
}
答案 0 :(得分:0)
根据我的理解,您需要先将照片上传到App的相册。如果“no_story”参数为false,它会自动将其发布到墙上。
https://developers.facebook.com/docs/reference/api/user/#photos