Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class TwitterBot
- {
- protected $url_dm = 'https://api.twitter.com/1.1/direct_messages.json';
- // ...
- public function messages()
- {
- if ($this->verifyAccountWorks())
- {
- echo $this->oauth->fetch($this->url_dm, OAUTH_HTTP_METHOD_GET);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment