Question

implementing publishActivity in PHP using the REST API using this code:

$activity = array(
    'message' => '{*actor*} did something.',
    'action_link' => array(
        'text' => 'Play Travians',
        'href' => WEBROOT
    )
);
$activity = $facebook->api_client->dashboard_publishActivity($activity);

I get a 15-digit number returned and no errors, however no activity appears in the logged in account or friends of this account.

Help appreciated.

Carlo

Was it helpful?

Solution

I think you're looking for a Feed post.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top