You are here

public function TwitterOAuth::get_authenticate_url in Twitter 7.3

Same name and namespace in other branches
  1. 6.3 twitter.lib.php \TwitterOAuth::get_authenticate_url()

File

./twitter.lib.php, line 336
Classes to implement the full Twitter API

Class

TwitterOAuth
A class to provide OAuth enabled access to the twitter API

Code

public function get_authenticate_url($token) {
  $url = $this
    ->create_oauth_url('oauth/authenticate', '');
  $url .= '?oauth_token=' . $token['oauth_token'];
  return $url;
}