2

我在使用 pycurl 和 Twitter 的 Streaming API 过滤器流时遇到问题。当我运行下面的代码时发生了什么,它似乎在执行调用时出错了。我知道这一点,因为我在执行调用之前和之后放置了打印语句。我正在使用 Python 2.6.1,如果这很重要,我在 Mac 上。

#!/usr/bin/python
print "Content-type: text/html"
print
import pycurl, json, urllib

STREAM_URL = "http://stream.twitter.com/1/statuses/filter.json?follow=1&count=100"
USER = "user"
PASS = "password"
print "<html><head></head><body>"


class Client:
    def __init__(self):
        self.buffer = ""
        self.conn = pycurl.Curl()
        self.conn.setopt(pycurl.POST,1)
        self.conn.setopt(pycurl.USERPWD, "%s:%s" % (USER,PASS))
        self.conn.setopt(pycurl.URL, STREAM_URL)
        self.conn.setopt(pycurl.WRITEFUNCTION, self.on_receive)

        try:
            self.conn.perform()
            self.conn.close()
        except BaseException:
            traceback.print_exc()

    def on_receive(self,data):
        self.buffer += data
        if data.endswith("\r\n") and self.buffer.strip():
            content = json.loads(self.buffer)
            self.buffer = ""
            print content
            if "text" in content:
                print u"{0[user][name]}: {0[text]}".format(content)

client = Client()

print "</body></html>"
4

2 回答 2

2

首先,尝试打开详细程度以帮助调试:

    self.conn.setopt(pycurl.VERBOSE ,1)

看起来您没有设置基本身份验证模式:

    self.conn.setopt(pycurl.HTTPAUTH, pycurl.HTTPAUTH_BASIC)

同样根据文档,您需要向 API 提供参数的 POST,而不是将它们作为 GET 参数传递:

    data = dict( track='stack overflow' )
    self.conn.setopt(pycurl.POSTFIELDS,urlencode(data))
于 2011-02-18T01:09:55.213 回答
1

您正在尝试使用基本身份验证。

基本身份验证在 HTTP 请求的标头中发送用户凭据。这使它易于使用,但不安全。OAuth 是 Twitter 今后首选的身份验证方法 - 到2010 年 8 月,我们将从 API 中关闭 Basic Auth。--身份验证,推特

于 2010-11-27T11:49:28.420 回答