I am trying to set properties of post. And I am posting news feed using curl.

I am setting properties like this but it is not working.

$message = 'Message 1';
$caption = 'Caption 1';
$media["properties"] = array('category' => array( 'text' => 'humor', 'href' => 'http://www.icanhascheezburger.com/category/humor'));
$media["media"] = array("type" => "image", "src"=> $imageUrl , "href"=>$link);
$attachment = array ('name' => $caption,
             'link' => $appUrl ,
             'caption' => 'Test Caption',
             'description' => $message,
             'attachment' =>  $media
            );

Feed is getting published, but properties are not coming.

Please suggest me to how I should set the properties.

link|improve this question
Docs seys you can't. developers.facebook.com/docs/reference/api – lord_t Sep 16 '11 at 13:56
1  
@haynar Please do not add comments in the question. – RepWhoringPeeHaa Dec 25 '11 at 13:58
feedback

2 Answers

First urldecode every link you include in the attachment and also json_encode the properties before setting it in the attachment.

$properties = array("Title" => array('text' => "Some Text", 'href' => urldecode($link)));

$attachment = array ('properties' => json_encode($properties))
link|improve this answer
feedback

Tested with Graph API Explorer:

POST /me/feed
properties  {"name" : {"text":"abc", "href":"http://www.google.com"}, "value" : {"text":"cde", "href":"http://www.google.com"}}

and etc filed.

This works fine for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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