Solution of Twitter API error- 401 error, Timestamp out of bounds

Building

Quick summary

Reference site of solution : https://dev.twitter.com/discussions/686 Follow This steps, 1.. Create a php file in your server: request_url =”https://api.twitter.com/1/help/test.json”; $srvstamp = time(); // —- server timestamp —- $twheader = get_headers($request_url, 1); // —- array with [‘Date’] string $twistamp = strtotime($twheader[‘date’]); // —- twitter timestamp echo ” Server: “.date(“Y.m.d (H:i:s)”,$srvstamp).” – “.$srvstamp.” \r\n”; echo ” Twitter: […]

Reference site of solution : https://dev.twitter.com/discussions/686 Follow This steps, 1.. Create a php file in your server:

request_url ="https://api.twitter.com/1/help/test.json"; 
$srvstamp = time(); // ---- server timestamp ---- 
$twheader = get_headers($request_url, 1); // ---- array with ['Date'] string 
$twistamp = strtotime($twheader['date']); // ---- twitter timestamp 
echo " Server: ".date("Y.m.d (H:i:s)",$srvstamp)." - ".$srvstamp." \r\n"; 
echo " Twitter: ".date("Y.m.d (H:i:s)",$twistamp)." - ".$twistamp." \r\n"; 
/The diference between my server and twitter is/ echo $twistamp - $srvstamp; ?>

2.- Open your browser and go to your php file I copied the difference between the timestamps
4.- Go to Ajust ->Wordtwit and saste that number in the last text filed (timestamp)
5.- Save and that’s all

Related Blog

Get in touch

Our Website address

Blog Page

|