Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im using Abraham William's Twitter PHP Library for oauth, I managed to get authorized and get a access token after reading lots of tutorials. But I want to put everything in a single page except library files. Lots of time I tried to do that with my very own class and functions. But so badly still im faild to generate a valid access 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");

(Source : https://dev.twitter.com/docs/auth/oauth/single-user-with-examples)

I tried to generate a valid oauth token and oauth token secret before "getConnectionWithAccessToken" function execute but I got "Invalid or expired token" error.

Can anyone help me to generate a valid $oauth_token & $oauth_token_secret to generate a valid access token ??

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.