A Simple PHP Support for Twitter Webhook implementation & Account Activity API subscription.
Switch branches/tags
Nothing to show
Clone or download
Latest commit d8f5b67 Sep 20, 2018
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
docs index page Sep 20, 2018
src sample code Aug 27, 2018
tests sample code Aug 27, 2018
twitter sample code Aug 27, 2018
.gitignore sample code Aug 27, 2018
.htaccess sample code Aug 27, 2018
.travis.yml sample code Aug 27, 2018
LICENSE.md sample code Aug 27, 2018
README.md Update README.md Aug 27, 2018
appcall.php sample code Aug 27, 2018
autoload.php sample code Aug 27, 2018
callback.php sample code Aug 27, 2018
composer.json sample code Aug 27, 2018
config.php sample code Aug 27, 2018
index.php sample code Aug 27, 2018
phpmd.xml sample code Aug 27, 2018
phpunit.xml sample code Aug 27, 2018

README.md

A Simple PHP Support for Twitter Webhook implementation & Account Activity API subscription.

Introduction

The Account Activity API provides you the ability to subscribe to realtime activities related to a user account via webhooks. This means that you can receive realtime Tweets, Direct Messages, and other account events from one or more of your owned or subscribed accounts through a single connection.

Supported Activity types

  • Tweets
  • @mentions
  • Replies
  • Retweets
  • Quote Tweets
  • Retweets of Quoted Tweets
  • Likes
  • Subscription Revokes
  • Follows
  • Blocks
  • Mutes
  • Send Direct Messages
  • Receive Direct Messages
  • Typing indicators
  • Read receipts
  • Tweet deletes

The Account Activity API is a webhook-based API that sends account events to a web app you develop, deploy and host. Check here more

Documentation