0
如何找出使用foursquare的api作爲追隨者的用戶使用Python包裝?用戶ID列表。粉絲foursquare用戶
import foursquare
user = client.users()
# after parse user json count followers zero. But this error.
如何找出使用foursquare的api作爲追隨者的用戶使用Python包裝?用戶ID列表。粉絲foursquare用戶
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()