I am trying to post to a users Activity feed on Facebook using the PHP SDK, is this possible? Or only with Javascript?
Here is my basic code to post to a users wall:
$facebook->api('/me/feed', 'POST',
array(
'link' => 'www.example.com',
'message' => 'Posting with the PHP SDK!'
));
I want to post to a users activity, how is this done? I've experimented with the code below but to no success.
$facebook->api('/me/application:view', 'POST',
array(
'item' => 'www.example.com',
));
Can anyone shed any light on this?