如何在mysql数据库中存储twitter oauth详细信息?

时间:2011-05-28 12:21:33

标签: mysql oauth twitter-oauth

我正在开发一个基本的twitter oauth应用程序!这是代码 -

$twitterObj = new EpiTwitter($consumer_key, $consumer_secret);
$oauth_token = $_GET['oauth_token'];
    if($oauth_token == '')
      { 
        $url = $twitterObj->getAuthorizationUrl();
        echo "<div style='width:200px;margin-top:200px;margin-left:auto;margin-  right:auto'>";
        echo "<a href='$url'>Sign In with Twitter</a>";
        echo "</div>";
     } 
    else
      {
        $twitterObj->setToken($_GET['oauth_token']);
        $token = $twitterObj->getAccessToken();
        $twitterObj->setToken($token->oauth_token, $token->oauth_token_secret);     
        $_SESSION['ot'] = $token->oauth_token;
        $_SESSION['ots'] = $token->oauth_token_secret;
        $twitterInfo= $twitterObj->get_accountVerify_credentials();
        $twitterInfo->response;
        $username = $twitterInfo->screen_name;
        $profilepic = $twitterInfo->profile_image_url;
        include 'update.php';

     } 

所以现在告诉我编码过程如何保存用户登录详细信息!

1 个答案:

答案 0 :(得分:0)

加密身份验证令牌及其秘密并将其存储在加密的数据库中。 See here了解更多信息