使用python和soundcloud api,我如何返回我的粉丝列表;他们的用户名和ID? 我跑
followers = client.get('/me/followers')
print followers
for user in followers:
print " "
print user.id
print user.username
但这只会返回
soundcloud.resource.Resource object at NUMBER
TypeError: 'Resource' object is not iterable
我尝试做的其他所有工作正常,我使用用户名+密码登录方法进行身份验证并获取令牌...但是当我尝试查看关注者而不是应该是列表时,我仍然只获得一个资源资源 我可能使用了错误的get方法吗?
答案 0 :(得分:0)
我离家时却尝试用户[' id']。
编辑:对不起,错误不存在。
好了,这是一种使用未记录的API的方法但是会很好:
followers = client.get('me/followers.json')
for user in followers:
print(user.username,user.id)
答案 1 :(得分:0)
followers = client.get('me/followers').collection
for user in followers:
print(user.obj['username'],user.obj['id'])
或
followers = client.get('me/followers').obj["collection"]
for user in followers:
print(user['username'],user['id'])