PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Ahmed Khan   PHP Twitter Search PHP SDK   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Twitter Search PHP SDK
Search for tweets and users with Twitter API
Author: By
Last change:
Date: 6 years ago
Size: 321 bytes
 

Contents

Class file image Download
<?php
include "vendor/autoload.php";
use
Twitter\Lists\Lists;
$list = new Lists();
$list->setToken("sVRnCXPUplLFePmzOqqoir8oR","PzmlGmm6UoJluWupC7js2hx025IwaY8gLD4I8BanQZtwS2g2Ql");
$value = ["list_id" => $listid,
"count" => "100"];
$lists = $list->getListMembers($value);
echo
"<pre>";
print_r($lists);
echo
"</pre>";
?>