This might be a dumb question, but I can't figure out where to add fb: explicitly_shared bool.
I can do this job using the Graph API by simply adding a field and setting it to true. It works like a charm.
But when I try to do this from my iOS application, it just does NOT work.
- (id<OGObject>)myObjectForObject:(NSDictionary*)object { NSString *format = @"http://www.myurl.com/fbobjects/object.php?" @"fb:app_id=<my_app_id>&og:type=%@" @"&fb:explicitly_shared=true" @"&og:title=%@" @"&og:description=%@" @"&og:image=http://www.myimageurl.com/image.png" @"&body=%@"; id<OGObject> result = (id<OGObject>)[FBGraphObject graphObject];
This comes directly from the open graph tutorial , basically, except where I added the fb: explicitly_shared bit.
Where do I need to add this when publishing from an iOS device? Any help is much appreciated :)
source share