這是我有,但LinkedIn返回「未經授權」的出錯信息:如何發佈到LinkedIn「分享」與node-auth?
var OAuth= require('oauth').OAuth;
oa= new OAuth("https://api.linkedin.com/uas/oauth/requestToken",
"https://api.linkedin.com/uas/oauth/accessToken",
"key", "secret", "1.0A", "http://test.com/oauth/callback", "HMAC-SHA1");
var post_data = {
share: {
"comment":"testing 123",
"visibility": {
"code":"anyone"
}
}
};
oa.post("http://api.linkedin.com/v1/people/~/shares?twitter-post=true", oauth_token, oauth_token_secret, post_data, 'application/json; charset=UTF-8', function(error, data){
}
得到任何幫助。 oauth_token和oauth_token_secret在獲取資源時起作用,所以我認爲它們是正確的。
問候,
約翰尼