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.

Im working with the facebook SDK and have a weird problem i cant figure out.

Im trying to implement it in an iOS app to iOS versions > 5.0, and i want to be able to post on a given site's wall.

I have made a site with a profile. So i have the given id for that site.

I get my permissions and log in with the following code

        NSArray *permissions = [[NSArray alloc] initWithObjects:
                            @"publish_stream", @"manage_pages",
                            nil];

    [FBSession openActiveSessionWithPublishPermissions:permissions
                                       defaultAudience:FBSessionDefaultAudienceEveryone
                                          allowLoginUI:YES
                                     completionHandler:^(FBSession *session, FBSessionState status, NSError *error) {
                                         if (error)
                                         {
                                             NSLog(@"Error %@", error);
                                         }
                                         else if (FB_ISSESSIONOPENWITHSTATE(status))
                                         {
                                             [[FBRequest requestForMe] startWithCompletionHandler:
                                              ^(FBRequestConnection *connection, NSDictionary<FBGraphUser> *user, NSError *error) {
                                                  if (!error)
                                                  {
                                                      [self promptUserWithAccountNameForStatusUpdate];
                                                  }
                                              }];
                                         }
                                     }];

That works as it should and after that, i make the request with the following code

            [FBRequestConnection startWithGraphPath:@"ID_ON_TESTSITE/feed" parameters:params HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error)

Now the "problem" arises.

It will post the request, but i can only see the post when im logged it with the user who made the post from the app. But if i log in with a different user and go on the wall i can not see the post.

So it's like the post its only visible to me - am i missing a setting or? (dont know if there is some page setting im missing, not many to adjust tho!)

Hope anyone can help, after the documentation it should be correct !

Will also point out, that i have no problem to post to another FRIENDS wall. There the friend and the user who post it can both see the post. And i also tried another site, which wasnt mine, but still the same problem..

share|improve this question
Minor update - still not working. - If a friend who liked the site, make a post from the app, others friends to him can see that he made a post. But when going on sites wall, it can't be seen. I doubt that it can be done, same problem almost here stackoverflow.com/questions/10912901/…. – Lasse Jan 7 at 12:28

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.