i Successfully bypass the Twite dialog and post directly to Twitter In ShareKit using following Code
SHKTwitter *twitter = [SHKTwitter new];
[twitter authorize];
SHKItem *item = [SHKItem new];
[item setCustomValue:@"i am tweeting" forKey:@"status"];
twitter.item = item;
[twitter send];
item.shareType = SHKShareTypeText;
item.text = @"hi";
But now also want to apply it to Facebook. plz help me
i use above code from here
Thanks In Advance