|
...
|
...
|
@@ -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]
|
|
|
|
|
...
|
...
|
|