Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upProblem : Timestamp out of bounds - code:135 #223
Comments
This comment has been minimized.
This comment has been minimized.
Aaron3
commented
Aug 23, 2013
|
It means that your server time is off by more than 30 seconds (actual time See: https://dev.twitter.com/discussions/670 On Fri, Aug 23, 2013 at 3:39 PM, hussein82 notifications@github.com wrote:
|
This comment has been minimized.
This comment has been minimized.
hussein82
commented
Aug 23, 2013
|
thanks Aaron |
hussein82 commentedAug 23, 2013
Hello
I write this code :
require('twitteroauth/twitteroauth/twitteroauth.php'); // path to twitteroauth library
$consumerkey = 'xxxxxxx';
$consumersecret = 'xxxxxxx';
$accesstoken = 'xxxxxxxx';
$accesstokensecret = 'xxxxxxx';
$twitter = new TwitterOAuth($consumerkey, $consumersecret, $accesstoken, $accesstokensecret);
$userinfo = $twitter->get('https://api.twitter.com/1.1/users/show.json?screen_name=NewsSyRev');
echo json_encode($userinfo);
but this message appear to me :
{"errors":[{"message":"Timestamp out of bounds","code":135}]}
please help me
thanks