[twitter-dev] OAuth issue, using mostly supplied code.

2010-05-16 Thread wparsons
Hopefully someone can help me out with this one, as I'm pretty stuck..

I'm using the PHP example on here: 
http://dev.twitter.com/pages/oauth_single_token

function getConnectionWithAccessToken($oauth_token,
$oauth_token_secret) {
  $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET,
$oauth_token, $oauth_token_secret);
  return $connection;
}

$connection = getConnectionWithAccessToken(abcdefg, hijklmnop);
$content = $connection-get(statuses/home_timeline);

along with the OAuth.php and twitterOAuth.php classes from @abraham's
code.  I've triple checked that all the keys are correct (copied and
pasted from my twitter account).  I'm using my OAuth_Token and
OAuth_Token_Secret, not the sample strings in the above code.

No matter what I request in the 'get', I get an Invalid / Used nonce
error back.  The Oauth.php and twitteroauth.php files are 100%
untouched, and when I view the request, the nonce and timestamp are
changing with every request.

If I change the OAuth_Token key I get an expired token error, but
changing the other keys doesn't have any effect, so it might be
related to the keys I'm using?

Any help would be GREATLY appreciated!


[twitter-dev] Re: OAuth issue, using mostly supplied code.

2010-05-16 Thread wparsons
Bingo!! Thanks so much Abraham!!  My server time was out by a few
hours, synced it up and I get results just like expected!!

On May 16, 10:31 am, Abraham Williams 4bra...@gmail.com wrote:
 Make sure your clock is properly synced. If it is more the a few minutes off
 it can cause the same error.

 Abraham



 On Sun, May 16, 2010 at 01:49, wparsons willpars...@gmail.com wrote:
  Hopefully someone can help me out with this one, as I'm pretty stuck..

  I'm using the PHP example on here:
 http://dev.twitter.com/pages/oauth_single_token

  function getConnectionWithAccessToken($oauth_token,
  $oauth_token_secret) {
   $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET,
  $oauth_token, $oauth_token_secret);
   return $connection;
  }

  $connection = getConnectionWithAccessToken(abcdefg, hijklmnop);
  $content = $connection-get(statuses/home_timeline);

  along with the OAuth.php and twitterOAuth.php classes from @abraham's
  code.  I've triple checked that all the keys are correct (copied and
  pasted from my twitter account).  I'm using my OAuth_Token and
  OAuth_Token_Secret, not the sample strings in the above code.

  No matter what I request in the 'get', I get an Invalid / Used nonce
  error back.  The Oauth.php and twitteroauth.php files are 100%
  untouched, and when I view the request, the nonce and timestamp are
  changing with every request.

  If I change the OAuth_Token key I get an expired token error, but
  changing the other keys doesn't have any effect, so it might be
  related to the keys I'm using?

  Any help would be GREATLY appreciated!

 --
 Abraham Williams | Developer for hire |http://abrah.am
 @abraham |http://projects.abrah.am|http://blog.abrah.am
 This email is: [ ] shareable [x] ask first [ ] private.