使用 VB 脚本解析 LinkedIn 个人资料中的信息

发布于 2024-08-27 14:55:23 字数 112 浏览 6 评论 0原文

有没有人有一个使用 VBScript 从 LinkedIn 个人资料中解析信息的示例?我有一个包含客户信息的数据库,并且我一直在添加 LinkedIn 的客户密钥,希望它能够自动更新该客户的部分或可能全部信息。

Does anyone have an example that parses out the information from a LinkedIn profile using VBScript? I have a database which contains client information, and I have been including the client Key for LinkedIn in hopes of having it automatically update some or possibly all of the information for that client.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

过度放纵 2024-09-03 14:55:23

不确定您想要什么,但您需要使用 Microsoft XMLHTTP 请求对象。我的语法可能有点生疏,你应该添加错误处理,但看起来大致是这样的(在 Google 上很容易找到完整的参考):

dim url, contents
dim xmlhttp_o
set xmlhttp_o = createobject( "microsoft.xmlhttp" )

'* generate complete url with the keys in your db *'
url = "http://linkedin.com/<whatever...>"

xmlhttp_o.open "get", url, false
xmlhttp_o.send

contents = xmlhttp_o.responsetext

此时,contents 包含你的页面的 HTML想要在 LinkedIn 上。一点点字符串操作就可以得到你想要的任何东西。

Not sure what you want out of there, but you'll want to use the Microsoft XMLHTTP request object. My syntax may be a little rusty, and you should add error handling, but that looks roughly like this (complete reference easy to find on Google):

dim url, contents
dim xmlhttp_o
set xmlhttp_o = createobject( "microsoft.xmlhttp" )

'* generate complete url with the keys in your db *'
url = "http://linkedin.com/<whatever...>"

xmlhttp_o.open "get", url, false
xmlhttp_o.send

contents = xmlhttp_o.responsetext

At that point, contents contains the HTML of the page you want on LinkedIn. A little string manipulation can get out whatever you want.

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