我是Android新手。我想用Facebook将图像发布到朋友的墙上。
我从GitHub源代码下载了代码。我登录了我的帐户,说peter@gmail.com并抓住我所有的朋友列表并在列表视图中填充我的所有朋友。
我有所有朋友的身份证和姓名。
答案 0 :(得分:0)
试试这个:
try{
Bundle parameters = new Bundle();
JSONObject attachment = new JSONObject();
try {
attachment.put("message", "Messages");
attachment.put("name", "Get utellit to send messages like this!");
attachment.put("href", link);
} catch (JSONException e) {
}
parameters.putString("attachment", attachment.toString());
parameters.putString("message", "Text is lame. Listen up:");
parameters.putString("target_id", "XXXXX"); // target Id in which you need to Post
parameters.putString("method", "stream.publish");
String response = authenticatedFacebook.request(parameters);
Log.v("response", response);
}
catch(Exception e){}
另请参阅参考Post on Friends Wall