1

我正在使用一个调用prepare_access_token来联系 Twitter api 的函数来执行读、写函数。

下面是我用来更新 twitter 消息的代码


@tweet = "Rails Rails"
@access_token = prepare_access_token(@oauth_token, @oauth_secret)
@response = @access_token.request(:post, "http://api.twitter.com/1/statuses/update.json", :status => @tweet)

def prepare_access_token(oauth_token, oauth_token_secret)

  consumer_key = Rails.application.config.consumer_key
  consumer_secret = Rails.application.config.consumer_secret  

  consumer = OAuth::Consumer.new(consumer_key, consumer_secret,
    { :site => "http://api.twitter.com",
      :scheme => :header
    })
  # now create the access token object from passed values
  token_hash = { :oauth_token => oauth_token,
                 :oauth_token_secret => oauth_token_secret
               }
  access_token = OAuth::AccessToken.from_hash(consumer, token_hash )
  return access_token
end

这适用于没有附加图像的状态更新,但是当我尝试使用如下图像附件更新状态时

@access_token = prepare_access_token(@oauth_token, @oauth_secret)
@response = @access_token.request(:post,  "https://upload.twitter.com/1/statuses/update_with_media.json"  , :media => $image , :status  => "Status")

它显示为{"request":"/1/statuses/update_with_media.json","error":"Error creating status."}

我究竟做错了什么?请建议。

4

2 回答 2

2

对于 consumer:site,尝试将其设置为http://upload.twitter.com而不是http://api.twitter.com。api 站点不支持媒体上传。

于 2012-10-01T07:36:16.317 回答
0

与 Twitter API 的其他 REST 方法不同,您必须Content-Type为此multipart/form-data方法设置POST https://upload.twitter.com/1/statuses/update_with_media.json

于 2012-07-09T13:23:01.283 回答