我使用图形 api 将消息和图像发布到 facebook 墙上。这是我使用的代码
if(i==1){
String res= UrltoValue.getValuefromUrl("https://graph.facebook.com/"+Login.facebookid+"/feed?access_token="+accesstoken+"&method="+"post"+"&message="+strFullMessage.replaceAll(" ", "%20")+"&source="+imageUrl);
Log.e("post response",res);
if(res.contains("id")){
Toast.makeText(getApplicationContext(), "successfully posted", Toast.LENGTH_SHORT).show();
}
消息和图片都发布成功,但是图片大小是缩略图。我使用了“source”和“picture”参数,但结果是一样的。
我从我的本地数据库中获取这些图像。我检查了该网址的图像大小,它是 240*320 大小,但它在我的 facebook 中以小尺寸显示。