我正在开发一个 android 应用程序,在该应用程序中,我想每 1 分钟在 facebook 上发布一次消息。
我的代码没有问题。在每一分钟我调用以下方法并且它每次都成功调用,但是在 facebook 我无法看到所有的帖子,facebook 只能在每十分钟后显示帖子。
代码 。
public void postOnWall(String msg)
{
try
{
if(mFacebook != null)
{
String response = mFacebook.request("me");
Bundle parameters = new Bundle();
parameters.putString("message", msg);
parameters.putString("description", "");
response = Profile.mFacebook.request("me/feed", parameters,"POST");
if (response == null || response.equals("") || response.equals("false"))
{
Log.v("Error", "Blank response");
}
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
你能告诉我确切的问题是什么,为什么我看不到墙上的所有帖子?我只能看到每 10 分钟的帖子。