Can facebook php api and crontab be used to create status updates? Crontab will run php code that sends the status update to facebook.
The problem for me is part of the login [$ facebook-> require_login ();]. Crontab cannot login, so can I send login information (username and password) to facebook?
my code example:
$facebook = new Facebook($api_key, $secret); $user = $facebook->require_login(); $output = "my status"; $result = $facebook->api_client->users_setStatus($output);
koppa source share