链接API集成
朋友们大家好,我正在使用 LinkedIn API 将 LinkedIn 个人资料和消息集成到我的网站。
我通过谷歌搜索得到了一个示例。但输出是 XML 输出。
那么,我如何将所有这些东西绑定到我的网站控件呢?
Hi friends I am using LinkedIn API to integrate LinkedIn profile and messages to my website.
I got one sample example throgh googling. But the output is coming in XML output.
Then, how can I bind all those things to my website controls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该更喜欢 linkedin 的 java script API,
了解更多详细信息,请访问 Linkeidn javaScript api docs =>
Java 脚本 API
You should prefer java script API of linkedin
for more details visit Linkeidn javaScript api docs =>
Java Script API
您可以从 LinkedIn 获取 XML 输出,例如 XMLFile.xml。
以下示例显示标签中的输出。
You get XML output from LinkedIn such as XMLFile.xml.
Following example shows output in label.
如果您使用 linkedin api url,默认情况下您会收到 XML 响应。您可以在末尾或 url 添加
?format=json
以获取 json 格式而不是 XML 格式的响应。例如
将给出 XML 结果,而
将给出 json 结果。
希望有帮助。
If you are using linkedin api urls, by default you get an XML response. You can add
?format=json
at the end or the url to get response in json format instead of XML.e.g.
will give XML result while
will give json result.
Hope it helps.