Herhangi bir ikinci kez otomatik sitemden twitter ile bağlan bana nasıl söyleyebilir.
Ben yaptım ... aşağıdaki KOD
if(empty($outh_key_db)){
$token=$_SESSION['oauth_token'] ;
$outh_secr_db=$_SESSION['oauth_token_secret'];
$con = mysql_connect("localhost","rathin","xxxxxxxxx");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("my_twtbook", $con);
mysql_query("UPDATE register SET outh_key = '".$token."', outh_secr='".$outh_secr_db."' WHERE userid='".$loguser_email."'");
mysql_close($con);
This code save the outh_token and outh_tk_secret to my DB. But on second time log in to my site I passed the 'outh_token and outh_tk_secret' in session with username.
Oauth olduğunu doğrulamak değil ....
Lütfen aouth yapmak için kullanıcı bir kez (1st zaman yapılmış) ise twitter bağlamak ... oauth kullanarak twitter bağlanmak .... bana öneririz