2017 © Pedro Peláez
 

package twittersdkphp

A PHP-SDK for Twitter Search API

image

ahmedkhan847/twittersdkphp

A PHP-SDK for Twitter Search API

  • Tuesday, April 25, 2017
  • by ahmedkhan847
  • Repository
  • 2 Watchers
  • 3 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 8 % Grown

The README.md

Twitter API PHP-SDK

A PHP-SDK for Twitter Search API and for Twitter Rest API. Just add the library in your project., (*1)

You can clone the repository or can install it using composer., (*2)

composer require ahmedkhan847/twittersdkphp:dev-master:1.*, (*3)

Once the package is installed you can use the SDK for:, (*4)

  • Search in Twitter
  • Getting users List from Twitter
  • Getting memebers from the Twitter List

Set your consumer key and consumer seceret key and start searching on Twitter., (*5)

Searching in Twitter

setToken("Consumer Key (API Key)","    Consumer Secret (API Secret)");
$value = ["q" => "twitter"];
$result = $search->search($value);
echo "
";
print_r($result);
echo "
"; ?>

Getting User List From Twitter

setToken("Consumer Key (API Key)","  Consumer Secret (API Secret)");
$value = ["user_id" => "132646"];
$lists = $list->getUserList($value);
echo "
";
print_r($lists);
echo "
"; ?>

Getting List memebers From Twitter List

setToken("Consumer Key (API Key)","  Consumer Secret (API Secret)");
$value = ["list_id" => "132646",
"count" => "100"];
$lists = $list->getListMembers($value);
echo "
";
print_r($lists);
echo "
"; ?>

Calling Any Twitter API URL

setToken("Consumer Key (API Key)","  Consumer Secret (API Secret)");
$value = ["user_id" => "132646"];
$result = $Base->callTwitter("get","favorites/list.json",$value);
echo "
";
print_r($result);
echo "
"; ?>

Feel free to contribute to the master branch, (*6)

The Versions

25/04 2017

dev-master

9999999-dev

A PHP-SDK for Twitter Search API

  Sources   Download

MIT

The Requires

 

search twitter search

25/04 2017

dev-release

dev-release

A PHP-SDK for Twitter Search API

  Sources   Download

MIT

The Requires

 

search twitter search

20/01 2017

1.0.0

1.0.0.0

A PHP-SDK for Twitter Search API

  Sources   Download

MIT

The Requires

 

search twitter search