我想通过我的网站通过Linkedin发送邀请,并使用我网站上的一些令牌代码。为此,我尝试了该代码:-
<!DOCTYPE html>
<html>
<head>
<script>
function invite() {
var url = '/people/~/mailbox',
body = {
recipients: {
values: [{
person: {
_path: '/people/email=dineshsharma.developer@gmail.com',
'first-name':'Dinesh',
'last-name':'Sharma'
}
}]
},
subject: 'Invitation to connect.',
body: 'Say yes!',
'item-content':{
'invitation-request':{
'connect-type':'friend'
}
}
};
IN.API.Raw()
.url(url)
.method("POST")
.body(JSON.stringify(body))
.result(function (result) {
console.log(result);
})
.error(function (error) {
console.log(error);
});
}
</script>
<script type="text/javascript" src="http://platform.linkedin.com/in.js">
api_key: '8145jr5s78ow'
onLoad: invite
authorize: true
</script>
</head>
<body>
</body>
</html>
但是它给了我控制台错误:-
未捕获(承诺)TypeError:无法读取属性“凭据” 为空
我还尝试了节点,下面的节点是我尝试过的链接形式:-
https://www.npmjs.com/package/linkedin-auto-connect
但是当我运行它时,向我显示此错误消息
错误:请求失败,状态码为303
如果有人有任何想法请帮助我,谢谢您