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.

Hi I am trying to post on my friend wall by using its friend id like this

[facebook requestWithGraphPath:@"1581445658/feed"
                          andParams:[NSMutableDictionary dictionaryWithObject:@"hello very good morning" forKey:@"message"]
                      andHttpMethod:@"POST"
                        andDelegate:self];

but getting error 400 bad request. Please suggest me how to to get the rid of this bad request.

Note: This method work for first 10-15 time after that its start giving this error. Now it is continuously giving this error.

share|improve this question
What actual error are you getting? – Igy Jun 13 '12 at 9:40
I am getting error 400 – Apple Jun 13 '12 at 9:44

2 Answers

up vote 1 down vote accepted

I think your ID is blocked by FB. So you have tried with other ID ?

share|improve this answer
Is there is any number of wall post limit with Facebook. That we can post in one day or in a particular time. Because I didn't get this in Facebook documentation. – Apple Jun 13 '12 at 9:26
Yes, I think they have limit or your post is marked as spam so.. you are facing problem in this. – Mitesh Khatri Jun 13 '12 at 9:27
Is there is something related to verified non-verified Facebook Account. – Apple Jun 13 '12 at 9:42
1  
Yes, If you account is verified in Mobile device then you are able to post more msgs on your frnd wall. – Mitesh Khatri Jun 13 '12 at 10:03
ok, But when it will be resumed...I have tried from my Fbacoount I can make wall post from there... – Apple Jun 13 '12 at 11:39

see this sample code ... in this you will find some GET and some POST methods and it is great.

and read documentation here facebook developer

share|improve this answer
I have read this...but didn't get any solution – Apple Jun 13 '12 at 7:50
have you downloaded the sample code ? if yes then just change the URL me/feed to friendId/feed friend id is your friend id... it will work. – The Tiger Jun 13 '12 at 7:55

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.