In my application I have a requirement of posting to all my friends walls .I used the following code to do this:
final int postCount = friends_facebookids.size();
new Timer().schedule(new TimerTask() {
@Override
public void run() {
if(postCount==0){
Toast.makeText(getApplicationContext(), "Add friends to post", Toast.LENGTH_SHORT).show();
}
for(int m=0;m<friends_facebookids.size();m++){
String res= UrltoValue.getValuefromUrl("https://graph.facebook.com/"+friends_facebookids.get(m)+"/feed?access_token="+accesstoken+"&method="+"post"+"&message="+strFullMessage.replaceAll(" ", "%20")+"&source="+imageUrl);
Log.e("post response",res);
counter +=1;
}
if(counter>=postCount){
cancel();//stops the timer
counter=0;
}
}
}, 1000,3000);
Here I am giving 3sec delay between each request, so that I can post to multiple friends walls without any restrictions from Facebook.
It worked for me upto 25 friends, after that I am getting (Bad Request as Response). Do I need to change anything in my code? Why is there an apprent restriction after 25 posts to Facebook.