I am developing one android application , in that application i want to post message on facebook in every 1 minute.
There is no problem in my code . In Every one minute i call the following method and it call successfully everytime , but in facebook i am not able to see all the post, facebook can only show the post after every ten minutes.
Code .
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();
}
}
Can you tell me what is the exact problem , why i can't see all the post on wall ? I can only see the post of every 10 Min.