PDA

Orijinalini görmek için tıklayınız : Türkiye İçin PHP ile Twitter Trend Topics Listesi Kodu



erkolay
21.Şubat.2015, 19:54
Türkiye İçin PHP ile Twitter Trend Topics ListesiTwitter Topic Trend'i sitenizin bir köşesine eklemek isterseniz PHP ve TwitterOauth kütüphanesiyle bu işi aşağıdaki kodlarla halledebilirsiniz.



< ?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 (https://blog.linuxhaber.com/turkiye-icin-php-ile-twitter-trend-topics-listesi/)

Ziyaretçi
14.Kasım.2016, 23:03
yazilimSozluk.com