2011-09-04 97 views
1

任何想法如何用图像更新用户的Twitter状态 - 使用Twitter-Async类?通过Twitter与媒体更新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); 

回答

1

与感谢@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); 
+0

我如何从一个网址,上传图片,如 “http://i.imgur.com/Wm4PM8A.png” 。 –