I need a PHP & MYSQL script which has features to auto script using PHP and MYSQL also OAuth Authentication. Please could you tell me some code in PHP for how could I could initiate the process.
Note: for PHP & MYSQL a Cron Job is optional I think, for an automated task I think a cron job is necessary.
Example: i have done hundreds of company project management after completion's of the project if i feel good then i have to tweet and paste that project on facebook as well i have issue that its very complicated for me to tweet every project manually i just want that i have to add all my tweets into database then after that at the given time interval the tweet has been update on my account automatically at the mentioned time which is on database.
When i test this its always goto to the else condition not done:(
require './tmhOAuth.php';
require './tmhUtilities.php';
$connection = new tmhOAuth(array(
'consumer_key' => 'xxxx',
'consumer_secret' => 'yyyy',
'user_token' => 'zzzz',
'user_secret' => 'ttttt',
));
$code = $connection->request('POST', $connection->url('1/statuses/update'), array(
'status' => 'just want to know what was going on ... hello wolrd'
));
if ($code == 200) {
tmhUtilities::pr(json_decode($tmhOAuth->response['response']));
echo 'done';
} else {
tmhUtilities::pr($tmhOAuth->response['response']);
echo 'not done';
}