我在Facebook上发布一些来自Android应用程序的数据。 它工作正常,除了对话窗口没有显示参数,如文本等...![请参见附图] [1]
这是我用来显示对话框的代码......
try
{
Bundle parameters = new Bundle();
parameters.putString("message", "this is a test");// the message to post to the wall
facebookClient.authorize(activity.this, listener);
facebookClient.dialog(myContext, "stream.publish", parameters, listener);// "stream.publish" is an API call
}
catch (Exception e)
{
// TODO: handle exception
Log.i("test","error = "+e.toString());
}
有谁知道我做错了什么?
非常感谢