I want to share some facebook posts via api chart.
But there is no such api. only the feed exists.
I tried using the api action for "me / feed" to share my friend message (and post to the page). but this is not how I shared on the facebook website. I want to know how.
source..
NSMutableDictionary *fbArguments = [[NSMutableDictionary alloc] init];
NSString *linkURL = @"http://media.daum.net/society/others/view.html?cateid=1067&newsid=20120106140112792&p=munhwa&RIGHT_COMM=R4";
[fbArguments setObject:linkURL forKey:@"link"];
[facebook requestWithGraphPath:@"me/feed"
andParams:fbArguments
andHttpMethod:@"POST"
andDelegate:self];
[fbArguments release];
And I noticed that there is no action for sharing mail (or photos), publishing the page through the facebook iphone application. (so weird, you don't need this action?)
What can I do? Could you help me?
Thank.
I managed to exchange photos. this is a link".
source
NSMutableDictionary *fbArguments = [[NSMutableDictionary alloc] init];
NSString *linkURL = @"https://www.facebook.com/photo.php?fbid=324225380935287&set=a.265279620163197.68309.194442110580282&type=1";
[fbArguments setObject:linkURL forKey:@"link"];
[fbArguments setObject:@"good!" forKey:@"message"];
[facebook requestWithGraphPath:@"me/feed"
andParams:fbArguments
andHttpMethod:@"POST"
andDelegate:self];
[fbArguments release];
I have added a message. and it’s exactly the same that I shared via internet facebook.
. (trackback?).
- facebook, "5 ", .
, . .
?
.