Want help in post message on linkedin using android

痴心易碎 提交于 2020-01-03 02:24:24

问题


How to do comment on post/share in linkedin in android i want to put a comment on share/post which is send by user in linkedin in android? Is there any working source code available for this?


回答1:


Once you've fetched the network updates and have a particular update to comment on, all you need to do is make the following POST call:

POST http://api.linkedin.com/v1/people/~/network/updates/key={NETWORK UPDATE KEY}/update-comments

Example of a the XML input being posted:

<?xml version='1.0' encoding='UTF-8'?>
<update-comment>
  <comment>I wish my company also offered skydiving classes!</comment>
</update-comment> 

More details can be found in this document: https://developer.linkedin.com/documents/commenting-reading-comments-and-likes-network-updates



来源:https://stackoverflow.com/questions/10894384/want-help-in-post-message-on-linkedin-using-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!