You are here

function TwitterOAuth::accessTokenURL in Tweet Feed 6

Same name and namespace in other branches
  1. 7.3 inc/twitter-oauth.inc \TwitterOAuth::accessTokenURL()
  2. 7 inc/twitter-oauth.inc \TwitterOAuth::accessTokenURL()
  3. 7.2 inc/twitter-oauth.inc \TwitterOAuth::accessTokenURL()

Set API URLS

2 calls to TwitterOAuth::accessTokenURL()
TwitterOAuth::getAccessToken in inc/twitter-oauth.inc
Exchange request token and secret for an access token and secret, to sign API calls.
TwitterOAuth::getXAuthToken in inc/twitter-oauth.inc
One time exchange of username and password for access token and secret.

File

inc/twitter-oauth.inc, line 45

Class

TwitterOAuth
Twitter OAuth class

Code

function accessTokenURL() {
  return 'https://api.twitter.com/oauth/access_token';
}