Twitter的API响应不可读(Twitter api response unreadable)

2019-10-17 11:40发布

我们一直在使用Twitter的API有一段时间了,但它突然停止工作。 追溯回似乎是从响应MSXML2.ServerXMLHTTP请求是ASP的VBScript不可读。

即使是一个简单的GET请求一个页面变成无效charactors。 打开https://api.twitter.com/oauth/request_token在浏览器中会显示一个字符串“无法验证的OAuth签名和令牌”。 当我试图让在ASP同样的事情,它返回数据不可读。

<% @LANGUAGE="VBSCRIPT" %>
<%
Set objXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
objXMLHTTP.open "GET", "https://api.twitter.com/oauth/request_token", false
objXMLHTTP.send ""

Response.Write "<pre>"
Response.Write objXMLHTTP.responseText
Response.Write "<hr>"
Response.Write objXMLHTTP.getAllResponseHeaders()
Response.Write "</pre>"
%>

输出是:

?
------
Date: Thu, 06 Dec 2012 09:12:17 GMT
Status: 401 Unauthorized
X-MID: caa889032d29f5316a855dcadd748211ed4ee276
X-Frame-Options: SAMEORIGIN
Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0
Content-Type: text/html; charset=utf-8
Last-Modified: Thu, 06 Dec 2012 09:12:16 GMT
Pragma: no-cache
X-Transaction: dd71c8da0813a966
Expires: Tue, 31 Mar 1981 05:00:00 GMT
X-Runtime: 0.02056
Set-Cookie: k=10.36.75.125.1354785136971277; path=/; expires=Thu, 13-Dec-12 09:12:16 GMT; domain=.twitter.com
Set-Cookie: guest_id=v1%3A135478513698331395; domain=.twitter.com; path=/; expires=Sat, 06-Dec-2014 21:12:16 GMT
Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCFihfG87ASIKZmxhc2hJQzonQWN0aW9uQ29u%250AdHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7ADoHaWQiJTMx%250AMzI0YjhkNDc4YmQ4MDExMjlhNTI2NWU5OTAxNDVi--97206a42b05d8cb85fbd88ccd9ccb8aaca39ebef; domain=.twitter.com; path=/; HttpOnly
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 62
Server: tfe

的? 是更charactors INFACT一个字符串,但无法处理,因为它包含一个CHR(0)。

现在,我想这可能是因为的Content-Encoding: gzip ,但即使在发送时objXMLHTTP.setRequestHeader "Accept-Encoding", "none" (或任何其他形式)返回相同的。

任何人有任何想法我能做些什么来解决这个问题?

Answer 1:

我一直在看着这几个小时只是要求我找到awnser后! 微博API需要一个用户代理将被发送很长的与该请求。 因此,它是那么简单:

Set objXMLHTTP = Server.CreateObject("Msxml2.ServerXMLHTTP.6.0")
objXMLHTTP.open "GET", "https://api.twitter.com/oauth/request_token", false
objXMLHTTP.SetRequestHeader "User-Agent", "something"
objXMLHTTP.send()


文章来源: Twitter api response unreadable