#!/usr/bin/python
# -*- coding: iso-8859-15 -*-
import twitter
class twitt():
def __init__(self):
consumer_key = '...'
consumer_secret = '...'
access_key = '...'
access_secret = '...'
encoding = 'iso-8859-15'
self.api = twitter.Api(consumer_key=consumer_key, consumer_secret=consumer_secret, access_token_key=access_key, access_token_secret=access_secret, input_encoding=encoding)
def run(self):
statuses = self.api.GetPublicTimeline()
print statuses
h = twitt()
h.run()
このコードは機能しません。readme と私が見つけたすべての例から直接取得したものです。「get_access_token.py」について何かを見つけましたが、それへの参照はありません!?
user@host:~# updatedb
user@host:~# locate get_access_token
user@host:~#
エラー: TypeError: __init__() got an unexpected keyword argument 'access_token_key'
参考文献:
- http://code.google.com/p/python-twitter/issues/detail?id=215
- https://github.com/bear/python-twitter/tree/master/examples