You are here

function twitter_get_tokens in Feeds OAuth 6

Same name and namespace in other branches
  1. 7 feeds_oauth.api.php \twitter_get_tokens()

File

./feeds_oauth.module, line 152

Code

function twitter_get_tokens($uid) {
  return db_fetch_array(db_query("SELECT oauth_token, oauth_token_secret FROM {twitter_account} WHERE uid = %d", $uid));
}