无法从 LinkedIn 获得连接 python API
Cannot get connections from LinkedIn python API
我正在尝试通过其 python API 获得 LinkedIn 连接。
现在 代码可以调用 get_profile() 函数,但是当我尝试 application.get_connections()
时,它给我的错误显示:
linkedin.exceptions.LinkedInError: 403 Client Error: Forbidden for url: https://api.linkedin.com/v1/people/~/connections?oauth2_access_token=...
我的linkedin申请权限只有4个选择:
r_basicprofile、r_emailaddress、rw_company_admin、w_share
我使用的重定向 url 是 http://localhost/
那么,你知道如何通过 python API 获得 LinkedIn 连接吗?
我的代码:
from linkedin import linkedin as lk
new_token = [my token]
application = lk.LinkedInApplication(token=new_token)
p = application.get_profile() # this one works
c = application.get_connections()
print p
print c
connections API requires the r_network
scope to be granted by the user. According to this LinkedIn doc,某些范围已受到限制,需要开发人员申请 LinkedIn 的合作伙伴计划才能获得访问权限。
注意:this 似乎也是您正在使用的库。
我正在尝试通过其 python API 获得 LinkedIn 连接。
现在 代码可以调用 get_profile() 函数,但是当我尝试 application.get_connections()
时,它给我的错误显示:
linkedin.exceptions.LinkedInError: 403 Client Error: Forbidden for url: https://api.linkedin.com/v1/people/~/connections?oauth2_access_token=...
我的linkedin申请权限只有4个选择: r_basicprofile、r_emailaddress、rw_company_admin、w_share
我使用的重定向 url 是 http://localhost/
那么,你知道如何通过 python API 获得 LinkedIn 连接吗?
我的代码:
from linkedin import linkedin as lk
new_token = [my token]
application = lk.LinkedInApplication(token=new_token)
p = application.get_profile() # this one works
c = application.get_connections()
print p
print c
connections API requires the r_network
scope to be granted by the user. According to this LinkedIn doc,某些范围已受到限制,需要开发人员申请 LinkedIn 的合作伙伴计划才能获得访问权限。
注意:this 似乎也是您正在使用的库。