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 working on an iPhone application, which needs to post some alert message on all my facebook friends' wall. I am using FB Graph API SDK for iPhone, and can able to post message as batch request using FBGraph API. The code is as follows. I referred https://developers.facebook.com/docs/api/batch/ for this.

FbGraphResponse *fb_graph_response = [fbGraph doGraphPost:@"" withPostVars:[NSDictionary dictionaryWithObjectsAndKeys:@"[{\"method\":\"POST\",\"relative_url\":\"1846638186\/feed\",\"body\":\"message=test\"},{\"method\":\"POST\",\"relative_url\":\"1075291616\/feed\",\"body\":\"message=test\"}]", @"batch", nil]]; 

But this is not effective, as using this, we just can post message on 10 friend's wall, that is the maximum feed request limit allowed per day. If i attached 10 POST message in batch request, it's been treated as 10 FEED API CALLS. So limit exceeded in a single message to all my friends. Then, i cannot use this Graph API call to post message for next one day.

How can i resolve this issue?

Is there any way to use POST API call ( http://developers.facebook.com/docs/reference/api/post/ ) for this, by just adding all friend's facebook ids in the parameter "TO"? Will it work or should i go for some other way?

Please advice, Thank you.

share|improve this question
1  
I think that is thought of as FB 'spam' – the wolf May 24 '11 at 5:22
Oh! So i can post the message only on 10 friend's wall per day? Do you have any reference link for this? – OneDerr Siva May 24 '11 at 5:54

1 Answer

So, Cannot we post same message to more than ten friends per day?

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.