看起来像Linkedin或oauth。我最近改变了一些东西。
原来连接正常,现在出现403错误。
在oauth上也检查了。当尝试使用"尝试Oauth"按钮连接时,它会给出相同的错误:
Connection failed with linkedin
We received an error while we were trying to authorize you. It can come from your API Keys or your provider app settings.
This error was returned by the server:
Error during the 'request_token' step (HTTP status code: 403)
Linkedin App界面似乎发生了变化:
- 再次进入白名单
- 重入oauth 2.0 link
- 重新输入我的信息等,看起来是正确的设置
- 这个设置直到最近才开始工作
这是代码:
OAuth.initialize('xxxxx');
OAuth.popup('linkedin')
.done(function(result) {
console.log("Connecting to Linkedin");
result.me()
.done(function (response) {
//
})
.fail(function (err) {
alert("Problem connecting to Linkedin: " + err);
});
})
.fail(function (err) {
alert("Problem connecting to Linkedin: " + err);
});
任何想法?
2015年2月12日,LinkedIn宣布对其开发者计划进行一系列更改。这些变化现在已经开始生效,并将在2015年5月12日至5月19日期间在整个领英应用程序基础上推广。
请阅读以下网址
https://developer.linkedin.com/support/developer-program-transition https://developer.linkedin.com/docs/apply-with-linkedin注-如果您请求r_fullprofile
或r_contactinfo
许可,则必须在申请链接页面上阅读申请链接条款和条件。
找到了答案,在oauth.io
的帮助下:
查看此链接:https://developer.linkedin.com/support/developer-program-transition
Linkedin已经对他们的API进行了一些更改,如果您使用r_fullprofile
或r_contactinfo
权限而没有应用到Linkedin公司API,则可能导致403错误。