下記のプログラムを使って、pythonからweiboの投稿を取得したいです。

プログラムの内容

from weibo import APIClient    # suppose you are using Twitter

APP_KEY = '294703483'            # app key
APP_SECRET = 'a2ef9de0a580edb7a26daf2804d27624'      # app secret
CALLBACK_URL = 'https://api.weibo.com/oauth2/authorize'  # callback url

client = APIClient(app_key=APP_KEY, app_secret=APP_SECRET,redirect_uri=CALLBACK_URL,
           access_token='2.00skPOWG0zpXw_e8253b9b7c9GKIdE', expires=1635772406)

print client.statuses.user_timeline.get()

プログラム実行
エラーメッセージ

Traceback (most recent call last):
File "salsa.py", line 9, in <module>
access_token='2.00skPOWG0zpXw_e8253b9b7c9GKIdE', expires=1635772406)
TypeError: __init__() got an unexpected keyword argument 'access_token'

pythonからsinaweibodyのプログラムについてはmichaelliao /sinaweibopyから情報を取得しました。

ACCESTOKENとexpiresはプログラムを実行して取得しました。
accestokenはweiboguideでも取得できます。

input the code: e983face8da18b92e14397505b02882b
Successfully get access_token: 2.00skPOWG0zpXw_e8253b9b7c9GKIdE
Successfully get expires_in: 1635771889

エラーが何故起きるかわかる方がいれば教えていただけるとありがたいです。
よろしくお願いいたします。