Ejemplo n.º 1
0
 /**
  * Make a long poll HTTP request using this library. This method is
  * different to the other request methods as it isn't supposed to disconnect
  * 
  * Using this method expects a callback which will receive the streaming
  * responses.
  *
  * @param string $method the HTTP method being used. e.g. POST, GET, HEAD etc
  * @param string $url the request URL without query string parameters
  * @param array $params the request parameters as an array of key=value pairs
  * @param string $callback the callback function to stream the buffer to.
  * @return void 
  * @static 
  */
 public static function streaming_request($method, $url, $params = array(), $callback = '')
 {
     //Method inherited from \tmhOAuth
     \Thujohn\Twitter\Twitter::streaming_request($method, $url, $params, $callback);
 }