Twitter auto follow

Twitter auto follow - Hello friends BOT TWITTER, On this occasion I will discuss the article entitled Twitter auto follow, I have provided various other latest articles. hopefully the article that I wrote is useful for you all..

Written by : BOT TWITTER
Title : Twitter auto follow

see also


    Twitter auto follow

    jika punya twitter dan ingin memanfaatkannya untuk internet marketing ataupun untuk meningkatkan traffict blog anda tentu saja harus mempunyai follower yang banyak maka cara yang paling mudah untuk mendapatkan follower banyak adalah anda memfollow mereka dan biasanya yang anda follow akan memfollow balik anda.Tentu saja adalah pekerjaan yang sangat membosankan jika harus memfollow satu-satu klik sana klik sini klik sana yang jumlahnya mungkin ribuan.Sekarang saya akan bagikan script autofollow twitter,hanya cukup edit dan klik saja anda sudah bisa follow 100 orang dengan target keyword anda sendiri.
    Script ini saya dapat dari forum adsense-id hasil karya Dave Stevens yang di share oleh member daylight.Script ini digunakan utk mem-follow setiap user twitter dengan keyword tertentu.Dan sudah saya coba dan 100% bekerja dengan baik.
    Ini langkah-langkahnya:
    1. Kopi script dibawah ini ke dalam notepad.
    2. Edit bagian yang berwarna merah sesuai isername dan keyword bidikan kamu.
    3. Save as dalam bentuk .php contoh NamaFile.php.
    4. Upload ke hosting kamu.
    5. Panggil file tersebut e.g hxxp://www.NamaDomainMilikKamu.com/NamaFile.php
    6. Done!
    <?php
    // Twitter Auto-follow Script by Dave Stevens – http://davestevens.co.uk
    // Set the twitter user
    $user = “YourTwitterID“;
    $pass = “YourTwitterPassword“;
    // Set the term keyword you want to follow (e.g. “soccer”)
    $term = “computer“;
    // Get already followed
    $userApiUrl = “http://twitter.com/statuses/friendss.json”;
    $ch = curl_init($userApiUrl);
    curl_setopt($ch, CURLOPT_USERPWD, $user.”:”.$pass);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $apiresponse = curl_exec($ch);
    curl_close($ch);
    $followed = array();
    if ($apiresponse) {
    $json = json_decode($apiresponse);
    if ($json != null) {
    foreach ($json as $u) {
    $followed[] = $u->name;
    }
    }
    }
    $userApiUrl = “http://search.twitter.com/search.json?q=” . $term . “&rpp=10000″;
    $ch = curl_init($userApiUrl);
    curl_setopt($ch, CURLOPT_USERPWD, $user.”:”.$pass);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $apiresponse = curl_exec($ch);
    curl_close($ch);
    if ($apiresponse) {
    $results = json_decode($apiresponse);
    $count = 20;
    if ($results != null) {
    $resultsArr = $results->results;
    if (is_array($resultsArr)) {
    foreach ($resultsArr as $result) {
    $from_user = $result->from_user;
    if (!in_array($from_user,$followed)) {
    $ch = curl_init(“http://twitter.com/friendships/create/” . $from_user . “.json”);
    curl_setopt($ch, CURLOPT_USERPWD, $user.”:”.$pass);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS,”follow=true”);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $apiresponse = curl_exec($ch);
    if ($apiresponse) {
    $response = json_decode($apiresponse);
    if ($response != null) {
    if (property_exists($response,”following”)) {
    if ($response->following === true) {
    echo “Now following ” . $response->screen_name . “n”;
    } else {
    echo “Couldn’t follow ” . $response->screen_name . “n”;
    }
    } else {
    echo “Follow limit exceeded, skipped ” . $from_user . “n”;
    }
    }
    }
    curl_close($ch);
    } else {
    echo “Already following ” . $from_user . “n”;
    }
    }
    }
    }
    }
    ?>


    Thus our article entitled Twitter auto follow,do you like the article hopefully this article can benefit you all.

    You are reading the article Twitter auto follow and this article the permalink url is https://bottwitter.blogspot.com/2012/07/name-userapiurl-httpsearch.html Other articles you are looking for xxxxx ,Twitter auto follow xxx .

    Related Posts :

    0 Response to "Twitter auto follow"

    Posting Komentar