Türkiye İçin PHP ile Twitter Trend Topics Listesi

Twitter Topic Trend'i sitenizin bir köşesine eklemek isterseniz PHP ve TwitterOauth kütüphanesiyle bu işi aşağıdaki kodlarla halledebilirsiniz.


scription">Kod:
< ?php
    //https://github.com/abraham/twitteroauth adresinden
    //twitterOauth kütüphanesini indirmeniz gerekiyor
    //sonra uygun şekilde çağırıyoruz
 
    require "autoload.php";
 
    use Abraham\TwitterOAuth\TwitterOAuth;
     
    //https://apps.twitter.com/ adresinden
    //uygulama oluşturuyorsunuz
    //uygulamaya ait keyleri bu alana giriyorsunuz
    $CONSUMER_KEY = 'xxxxxxxxxxxxxxxxxxxxxxxxxxx';
    $CONSUMER_SECRET = 'xxxxxxxxxxxxxxxxxxxxxxxxxxx';
 
    //uygulama oluşturulduktan sonra
    //Uygulama -> Key ve Access Token alanından
    //Token Actions'dan token oluşturuyoruz
    $access_token = 'nnnnnnnn-xxxxxxxxxxxxxxxxxxxxxxxxxxx';
    $access_token_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxx';
 
    //Türkiye için WeoID değeri
    $woeid = '23424969'; 
 
    $connection = new TwitterOAuth($CONSUMER_KEY, $CONSUMER_SECRET, $access_token, $access_token_secret);
     
    //API Versiyonu
    $connection->host = 'https://api.twitter.com/1.1/'; 
 
    //talebi gönderiyoruz ve sonucu alıyoruz
    $ret = $connection->get('/trends/place', array('id' => $woeid));
 
    //sonuçları yazdırıyoruz
    foreach ($ret[0]->trends as $topic)

    {
        echo '<a href="'.$topic->url.'">'.$topic->name.'</a><br>';
    }
Linux Haber