链接API集成

发布于 2024-08-27 03:52:22 字数 128 浏览 7 评论 0原文

朋友们大家好,我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

錯遇了你 2024-09-03 03:52:22

您应该更喜欢 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

夏尔 2024-09-03 03:52:22

您可以从 LinkedIn 获取 XML 输出,例如 XMLFile.xml。

以下示例显示标签中的输出。

DataSet tmpDs = new DataSet();

tmpDs.ReadXml(Server.MapPath("~/XMLFile.xml"));

lblUser.Text = tmpDs.Tables[0].Rows[0]["first-name"].ToString();

You get XML output from LinkedIn such as XMLFile.xml.

Following example shows output in label.

DataSet tmpDs = new DataSet();

tmpDs.ReadXml(Server.MapPath("~/XMLFile.xml"));

lblUser.Text = tmpDs.Tables[0].Rows[0]["first-name"].ToString();
人海汹涌 2024-09-03 03:52:22

如果您使用 linkedin api url,默认情况下您会收到 XML 响应。您可以在末尾或 url 添加 ?format=json 以获取 json 格式而不是 XML 格式的响应。

例如

http://api.linkedin.com/v1/people/~

将给出 XML 结果,而

http://api.linkedin.com/v1/people/~?format=json

将给出 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.

http://api.linkedin.com/v1/people/~

will give XML result while

http://api.linkedin.com/v1/people/~?format=json

will give json result.

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文