If you share a photo on Instagram you see the following message above the photo on your timeline.
"FB User took a photo with Instagram."
My test currently just shows:
"FB User 3 seconds ago via AppName"
My image Post code is:
$args = Array(
'url' => 'http://www.mySiteName.com/imageName.png',
'message' => 'Made on SiteName http://www.mySiteName.com',
);
$post_id = $this->facebook->api("/me/photos", "post", $args);
I think I need to set OpenGraph Actions and Objects, which I've done, but I'm not sure I've set them up correctly or how to test them.
I've created an Action "Make" and an Object "Collection" and tried the following:
$post_id = $this->facebook->api("/me/Namespace:make", "post", $args);
but get error:
"The action you're trying to publish is invalid because it does not specify any reference objects. At least one of the following properties must be specified: collection."
Collection Get Code gives:
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# collection: http://ogp.me/ns/collection#">
<meta property="fb:app_id" content="appId" />
<meta property="og:type" content="collection" />
<meta property="og:url" content="Put your own URL to the object here" />
<meta property="og:title" content="Sample Collection" />
<meta property="og:image" content="https://s-static.ak.fbcdn.net/images/devsite/attachment_blank.png" />
Action Get Code gives:
curl 'https://graph.facebook.com/me/nameSpace:make?access_token=TOKEN'
