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..