Python followerfoursquare用户

Python followerfoursquare用户,python,api,foursquare,Python,Api,Foursquare,如何使用foursquare的api找出谁是使用Python包装器的跟随者用户?用户ID列表 import foursquare user = client.users() # after parse user json count followers zero. But this error. 看看图书馆,我看到: def friends(self, USER_ID=u'self', params={}, multi=False): """https://developer.fou

如何使用foursquare的api找出谁是使用Python包装器的跟随者用户?用户ID列表

import foursquare

user = client.users()
# after parse user json count followers zero. But this error.

看看图书馆,我看到:

def friends(self, USER_ID=u'self', params={}, multi=False):
    """https://developer.foursquare.com/docs/users/friends"""
    return self.GET('{USER_ID}/friends'.format(USER_ID=USER_ID), params, multi=multi)
您是否尝试过
friends=client.users.friends()