使用 VB 脚本解析 LinkedIn 个人资料中的信息
有没有人有一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您想要什么,但您需要使用 Microsoft XMLHTTP 请求对象。我的语法可能有点生疏,你应该添加错误处理,但看起来大致是这样的(在 Google 上很容易找到完整的参考):
此时,
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):
At that point,
contents
contains the HTML of the page you want on LinkedIn. A little string manipulation can get out whatever you want.