我正在开发一个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分钟的帖子。