@@ -37,7 +37,7 @@ def __init__(self, auth_handler=None,
37
37
home_timeline = bind_api (
38
38
path = '/statuses/home_timeline.json' ,
39
39
payload_type = 'status' , payload_list = True ,
40
- allowed_param = ['since_id' , 'max_id' , 'count' , 'page' ],
40
+ allowed_param = ['since_id' , 'max_id' , 'count' ],
41
41
require_auth = True
42
42
)
43
43
@@ -46,7 +46,7 @@ def __init__(self, auth_handler=None,
46
46
path = '/statuses/user_timeline.json' ,
47
47
payload_type = 'status' , payload_list = True ,
48
48
allowed_param = ['id' , 'user_id' , 'screen_name' , 'since_id' ,
49
- 'max_id' , 'count' , 'page' , ' include_rts' ]
49
+ 'max_id' , 'count' , 'include_rts' ]
50
50
)
51
51
52
52
""" statuses/mentions """
@@ -85,7 +85,7 @@ def __init__(self, auth_handler=None,
85
85
retweets_of_me = bind_api (
86
86
path = '/statuses/retweets_of_me.json' ,
87
87
payload_type = 'status' , payload_list = True ,
88
- allowed_param = ['since_id' , 'max_id' , 'count' , 'page' ],
88
+ allowed_param = ['since_id' , 'max_id' , 'count' ],
89
89
require_auth = True
90
90
)
91
91
@@ -195,7 +195,7 @@ def me(self):
195
195
direct_messages = bind_api (
196
196
path = '/direct_messages.json' ,
197
197
payload_type = 'direct_message' , payload_list = True ,
198
- allowed_param = ['since_id' , 'max_id' , 'count' , 'page' ],
198
+ allowed_param = ['since_id' , 'max_id' , 'count' ],
199
199
require_auth = True
200
200
)
201
201
@@ -282,7 +282,7 @@ def lookup_friendships(self, user_ids=None, screen_names=None):
282
282
friends = bind_api (
283
283
path = '/friends/list.json' ,
284
284
payload_type = 'user' , payload_list = True ,
285
- allowed_param = ['id' , 'user_id' , 'screen_name' , 'page' , ' cursor' ]
285
+ allowed_param = ['id' , 'user_id' , 'screen_name' , 'cursor' ]
286
286
)
287
287
288
288
""" friendships/incoming """
@@ -310,7 +310,7 @@ def lookup_friendships(self, user_ids=None, screen_names=None):
310
310
followers = bind_api (
311
311
path = '/followers/list.json' ,
312
312
payload_type = 'user' , payload_list = True ,
313
- allowed_param = ['id' , 'user_id' , 'screen_name' , 'page' , ' cursor' ]
313
+ allowed_param = ['id' , 'user_id' , 'screen_name' , 'cursor' ]
314
314
)
315
315
316
316
""" account/verify_credentials """
@@ -432,7 +432,7 @@ def update_profile_background_image(self, filename, *args, **kargs):
432
432
blocks = bind_api (
433
433
path = '/blocks/list.json' ,
434
434
payload_type = 'user' , payload_list = True ,
435
- allowed_param = ['page ' ],
435
+ allowed_param = ['cursor ' ],
436
436
require_auth = True
437
437
)
438
438
0 commit comments