使用Twitter Async更新媒体的Twitter状态


Update Twitter status with media with Twitter Async

知道如何使用Twitter- async类更新用户的Twitter状态吗?

这是我的

$twitter = new Twitter(CONSUMER_KEY, CONSUMER_SECRET,$_SESSION['oauth_token'],$_SESSION['oauth_token_secret']);
$array = array('media[]' => '@/img/1.jpg','status' => $status);
$twitter->post('/statuses/update_with_media.json', $array);

感谢@billythekid,我做到了。这是你需要做的:在EpiOAuth文件中查找这些函数,看看我添加了什么,并在必要的地方进行修改。

EpiOAuth.php

//I have this on line 24
  protected $mediaUrl       = 'https://upload.twitter.com';
//and altered getApiUrl() to include check for such (you may wish to make this a regex in keeping with the rest?)
  private function getApiUrl($endpoint)
  {
    if(strpos($endpoint,"with_media") > 0)
      return "{$this->mediaUrl}/{$this->apiVersion}{$endpoint}";
    elseif(preg_match('@^/(trends|search)[./]?(?=(json|daily|current|weekly))@', $endpoint))
      return "{$this->searchUrl}{$endpoint}";
    elseif(!empty($this->apiVersion))
      return "{$this->apiVersionedUrl}/{$this->apiVersion}{$endpoint}";
    else
      return "{$this->apiUrl}{$endpoint}";
  }
// add urldecode if post is multiPart (otherwise tweet is encoded)
  protected function httpPost($url, $params = null, $isMultipart)
  {
    $this->addDefaultHeaders($url, $params['oauth']);
    $ch = $this->curlInit($url);
    curl_setopt($ch, CURLOPT_POST, 1);
    // php's curl extension automatically sets the content type
    // based on whether the params are in string or array form
    if ($isMultipart) {
        $params['request']['status'] = urldecode($params['request']['status']);
    }
    if($isMultipart)
      curl_setopt($ch, CURLOPT_POSTFIELDS, $params['request']);
    else
      curl_setopt($ch, CURLOPT_POSTFIELDS, $this->buildHttpQueryRaw($params['request']));
    $resp = $this->executeCurl($ch);
    $this->emptyHeaders();
    return $resp;
  }

文章图片

// how to post image
$twitter = new Twitter(CONSUMER_KEY, CONSUMER_SECRET,$_SESSION['oauth_token'],$_SESSION['oauth_token_secret']);
$array = array('@media[]' => '@/img/1.jpg','status' => $status);
$twitter->post('/statuses/update_with_media.json', $array);