MathWellan

Untitled

Sep 29th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. class TwitterBot
  4. {
  5.     protected $url_dm = 'https://api.twitter.com/1.1/direct_messages.json';
  6.  
  7.     // ...
  8.  
  9.     public function messages()
  10.     {
  11.         if ($this->verifyAccountWorks())
  12.         {
  13.             echo $this->oauth->fetch($this->url_dm, OAUTH_HTTP_METHOD_GET);
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment