我刚刚获得了Instagram的身份验证凭据,并且我一直在尝试使用Python wrapper,但我无法获得基本查询。例如,在加载我的客户端ID,秘密和访问令牌后:
api = InstagramAPI(client_id=client_id, client_secret=client_secret, access_token=access_token)
print('got api %s'%(api))
user_name = 'natgeo'
search_result = api.user_search(q=user_name)
print('username %s gets search result %s'%
(user_name, search_result))
返回
username natgeo gets search result []
不应该是这种情况,因为natgeo
是一个有效的Instagram帐户。但是,由于某种原因,搜索我的用户名工作正常。知道我做错了吗?