0

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...

Aditya
  • 5
  • 1
  • 4
  • Does this answer your question? [LinkedIn Share Post URL](https://stackoverflow.com/questions/33426752/linkedin-share-post-url) – Roy Jun 14 '22 at 09:57
  • No i want to post text format only and not any URL – Aditya Jun 14 '22 at 10:00

1 Answers1

0

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#",
     }
   }
 }
}
Haris Bouchlis
  • 2,366
  • 1
  • 20
  • 35