我正在开发一个应用程序,它可以让用户在Facebook上向朋友发送消息。我查看了Facebook API,Hackbook文件夹。我使用了以下代码,但它没有用。它似乎要求我为它实现一个新的对话框。
Bundle params = new Bundle();
params.putString("caption", app_name);
params.putString("picture", picture);
dialog(MyClass.this, "send", params, new UpdateStatusListener());
非常感谢任何帮助!
答案 0 :(得分:0)
检查此代码段是否在朋友的墙上发布:
try{
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){}