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

share|improve this question
1  
use FBGraph to post directly to Facebook – Prince Jun 2 '12 at 8:10

2 Answers

up vote 0 down vote accepted

No it's possible to imitate the Share dialog directly.

You can use the /ID/feed connection but the user status update will appear as "via your app".

share|improve this answer
ya but Id/Feed is used in graph Api and i want to use it in Sharekit – SmartWork Jun 2 '12 at 12:49

FBGraph is much better way to use facebook API in your app.

download the FBGraph Api documents folder then add it to in your folder. and read the instruction on facebook developer site http://developers.facebook.com/docs/reference/api/.

this is the sample code - sample code

and let me know if you have any query about it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.