我想使用仅应用程序身份验证访问 Twitter 1.1 搜索端点。为此,我正在尝试在此处实施 Twitter API 文档中给出的步骤 - https://dev.twitter.com/docs/auth/application-only-auth (滚动到“发出仅限应用程序的请求”)
我无法在第 2 步中获取“承载令牌”。当我运行以下代码时,我收到“响应:302 Found”,这是对位置的重定向:https ://api.twitter.com/oauth2/token 理想情况下应该是“200 OK”
import urllib
import base64
import httplib
CONSUMER_KEY = 'my_key'
CONSUMER_SECRET = 'my_secret'
encoded_CONSUMER_KEY = urllib.quote(CONSUMER_KEY)
encoded_CONSUMER_SECRET = urllib.quote(CONSUMER_SECRET)
concat_consumer_url = encoded_CONSUMER_KEY + ":" + encoded_CONSUMER_SECRET
host = 'api.twitter.com'
url = '/oauth2/token'
params = urllib.urlencode({'grant_type' : 'client_credentials'})
req = httplib.HTTP(host)
req.putrequest("POST", url)
req.putheader("Host", host)
req.putheader("User-Agent", "My Twitter 1.1")
req.putheader("Authorization", "Basic %s" % base64.b64encode(concat_consumer_url))
req.putheader("Content-Type" ,"application/x-www-form-urlencoded;charset=UTF-8")
req.putheader("Content-Length", "29")
req.putheader("Accept-Encoding", "gzip")
req.endheaders()
req.send(params)
# get the response
statuscode, statusmessage, header = req.getreply()
print "Response: ", statuscode, statusmessage
print "Headers: ", header
我不想使用任何 Twitter API 包装器来访问它。