2015-05-19 96 views
-2

看起來像Linkedin或oauth.io最近改變了一些東西。oauth.io linkedin給出403錯誤,當相同的代碼用於正常工作時

用於連接正常,現在它給出了403錯誤。

還檢查了oauth.io網站與我的應用程序設置,它給試圖使用「嘗試的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的應用程序界面似乎已經改變:

  • 重新進入白名單
  • 重新輸入OAuth 2.0用戶鏈接
  • 重新進入我的信息等看起來是正確的設置
  • 此設置中使用直到最近工作

這是代碼:

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); 
}); 

任何想法?

+0

使用phonegap + javascript api,但問題似乎也在oauth.io控制檯中 –

回答

2

2015年2月12日,LinkedIn宣佈對其開發者計劃進行一系列更改。現在這些變化已經開始生效,並會陸續推出,以5月12日之間的整個LinkedIn應用基地 - 5月19日,2015年

請以下網址

https://developer.linkedin.com/support/developer-program-transition

https://developer.linkedin.com/docs/apply-with-linkedin

閱讀

注 -如果您要求獲得r_fullprofiler_contactinfo權限,那麼您必須閱讀申請鏈接條款和條件適用於鏈接頁面。

相關問題