I am using ShareKit for sharing a post with a message & URL on Facebook. The code snippets using which the code works is as below
NSURL *url = [NSURL URLWithString:stringurl];
SHKItem *item = [SHKItem URL:url title:stringtitle contentType:SHKURLContentTypeWebpage];
SHKSharer* sharer = [[NSClassFromString(@"SHKiOSFacebook") alloc]init];
[sharer loadItem:item];
[sharer share];
On button click, the application looks up for the Facebook id which
has been configured in Settings of the Simulator or Phone. On allowing access, it launches a popup having post contents.
My problem is that this is
working only for the Facebook ID using which I have created the application on facebook developers console .
I am not finding the settings on facebook developer site or inside ShareKit to enable posting to any Facebook users wall. So how can I achieve this? Any help is appreciated.