通过API设置Twitter状态(不带oAuth)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过API设置Twitter状态(不带oAuth)相关的知识,希望对你有一定的参考价值。

This script works good condition, and not use "oAuth".
Your should get username and password with cleartext (standart html controls) without authentication and just add them into variables in your code...
(twitter_username and twitter_password)
And also get status from textbox and set variable named "new_status"
  1. Response.Buffer = True
  2. Dim xml
  3. Set xml = Server.CreateObject("Microsoft.XMLHTTP")
  4.  
  5. twitter_username = "YOUR USERNAME" 'change to your twitter username
  6. twitter_password = "YOUR PASSWORD" 'change to your twitter password
  7.  
  8. new_status = "YOUR STATUS" 'change to your new status
  9.  
  10. xml.Open "POST", "http://" & twitter_username & ":" & twitter_password & "@twitter.com/statuses/update.xml?status=" & server.URLencode(new_status), False
  11. xml.setRequestHeader "Content-Type", "content=text/html; charset=iso-8859-1"
  12. xml.Send
  13.  
  14. Response.Write xml.responseText 'view Twitter's response
  15.  
  16. Set xml = Nothing

以上是关于通过API设置Twitter状态(不带oAuth)的主要内容,如果未能解决你的问题,请参考以下文章

通过 ServiceStack api 使用 Linq2Twitter 和缓存的 OAuth 令牌

用于黑莓实现的 Twitter API

Twitter API 获得提及

我们可以从 Twitter oauth API 获取电子邮件 ID 吗?

无法使用R中的setup_twitter_oauth()函数来使用twitter

我正在尝试通过 twitter oauth 在 twitter 上发布图片,但它给出了错误 http 500