function TwitterOAuth::accessTokenURL in Tweet Feed 7
Same name and namespace in other branches
- 6 inc/twitter-oauth.inc \TwitterOAuth::accessTokenURL()
- 7.3 inc/twitter-oauth.inc \TwitterOAuth::accessTokenURL()
- 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';
}