作者 陈俊学

2.2.1

... ... @@ -4,5 +4,5 @@ SERVER:
reconnect_interval: 3
VERSION:
code: 110
name: 2.2.0
\ No newline at end of file
code: 111
name: 2.2.1
\ No newline at end of file
... ...
... ... @@ -2029,8 +2029,7 @@ class FacebookClient(Client):
ext_field = ''
if isinstance(include_fields, list) and include_fields:
ext_field = "," + ','.join(include_fields)
sql_tmpl = 'SELECT uid,name,friend_count,sex,city,current_location,locale,online_presence,birthday_date' + ext_field + ' FROM user WHERE uid = {}'
sql_tmpl = 'SELECT uid,name,friend_count,sex,current_location,locale,online_presence,birthday_date' + ext_field + ' FROM user WHERE uid = {}'
fql_queries = dict()
if isinstance(ids, str): ids = [ids]
... ...