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 trying to post a feed on the fb wall using a new application with a certain API key, It's not posting anything on the wall, I have tried the same thing with another API key(other app) with the same settings and permissions of (publish_stream) and it worked (still working in a 10 minutes time difference between post and another wich is weird as well)

using this simple code:

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   @"some text", @"message",
                                   nil];

[facebook requestWithGraphPath:@"/me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];

Any Idea?!

share|improve this question
What kind of response are you getting back? Any specific errors? – bentford Jan 4 '12 at 16:19
What's the response you get back from the HTTP post with the good one, and the response you get from the bad HTTP post? – DMCS Jan 4 '12 at 16:22

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.