I want to post data from my angular application to linkedin personal profile feeds. I have searched but got only posting to company page but not in personal feeds.
Thankfull if anyone help me out or atleast give me some hints...
I want to post data from my angular application to linkedin personal profile feeds. I have searched but got only posting to company page but not in personal feeds.
Thankfull if anyone help me out or atleast give me some hints...
I can't find a way to do it with the official API, but you can try with oneall
POST /push/identities/<identity_token>/linkedin/post.json
example body:
{
"request":{
"push":{
"post":{
"title": "#title#",
"description": "#description#",
"message": "#message#",
"link": "#link#",
"picture": "#picture#",
}
}
}
}