我在LinkedIn的App中配置了“授权重定向URL”中的“ http://localhost:8000/code”,并执行了该Python脚本(替换了client_id和client_secret):
from linkedin import linkedin
RETURN_URL = 'http://localhost:8000'
authentication = linkedin.LinkedInAuthentication(
CLIENT_ID,
CLIENT_SECRET,
RETURN_URL,
linkedin.PERMISSIONS.enums.values()
)
print (authentication.authorization_url) # open this url on your browser
当我运行脚本并尝试打开http://localhost:8000
时,我刚得到"This site can’t be reached / localhost refused to connect."
我尝试将代码和重定向URL更改为http://localhost:8080
,但结果相同。我已经确认Windows防火墙(通过Norton 360)允许在我使用的conda环境中使用python.exe。我已经尝试过Chrome和Edge。
我还能尝试什么?