Is it possible to use facebook php api and crontab to create status updates? Crontab would run the php code that sends the status update to facebook.
The problem for me is the login part [$facebook->require_login();]. Crontab can't login, so can i send the login information (username and password) to facebook as well?
my example code:
$facebook = new Facebook($api_key, $secret);
$user = $facebook->require_login();
$output = "my status";
$result = $facebook->api_client->users_setStatus($output);