Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
2  
Perhaps your calculation on the interval on which to post is not correct, can you post it here? If it is, Facebook may restrict API-calls to once every ten minutes to prevent spam. – Ruben Jan 11 at 10:01
2  
Facebook may prevent spamming by disabling the post via api every 10 mins, check the developer docs developers.facebook.com/docs/reference/android – Lalith B Jan 11 at 10:05
@LalithB Thanks Lalith for your quick response but your link is broken. – Chirag Raval Jan 11 at 10:37
@Ruben Thanks Rubin for your response . – Chirag Raval Jan 11 at 10:38
@ChiragRaval developers.facebook.com/docs/howtos/androidsdk/3.0/… The link for AdditionInfo doesnt work for me either. :P guess its a broken link at Facebook.FYI Even twitter doesnt allow posting every 10 secs through API. – Lalith B Jan 11 at 11:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.