190 |
|
return $this->call_method('facebook.feed.publishTemplatizedAction', |
191 |
|
array('actor_id' => $actor_id, |
192 |
|
'title_template' => $title_template, |
193 |
< |
'title_data' => $title_data, |
193 |
> |
'title_data' => is_array($title_data) ? json_encode($title_data) : $title_data, |
194 |
|
'body_template' => $body_template, |
195 |
< |
'body_data' => $body_data, |
195 |
> |
'body_data' => is_array($body_data) ? json_encode($body_data) : $body_data, |
196 |
|
'body_general' => $body_general, |
197 |
|
'image_1' => $image_1, |
198 |
|
'image_1_link' => $image_1_link, |