Scribe 和 Spring Social 集成用于访问 LinkedIn API
几天前,我的任务是集成 Scribe 和 Spring Social 以访问 LinkedIn API。开发环境有Windows、Spring和Java。
Spring Social 的 (spring-social-core-1.0.0.M1.jar) LinkedInTemplate 使用 org.scribe.extensions.linkedin.LinkedInBaseStringExtractorImpl。 (日志消息显示 LinkedInBaseStringExtractorImpl 为“NoClassDefFoundError”)该类存在于 scribe-1.0.7.jar 中,但不存在于最新的 jar 中,即 scribe-1.1.0.jar(在 https://github.com/fernandezpablo85/scribe-java)。
我找不到解决这个问题的方法。但我能够快速进行破解:在本地计算机上,我将 LinkedInBaseStringExtractorImpl 从 scribe-1.0.7.jar 复制到 scribe-1.1.0.jar。现在一切都像魅力一样。
我很想知道其他人是否也遇到过类似的问题。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你说的是对的。 Scribe 将其内部结构从 1.0 更改为 1.1(及更高版本),但公共 api 没有改变,一些内部结构确实如此,并且此类
LinkedInBaseStringExtractorImpl
不再是库的一部分。无论如何,您根本不需要 SpringSocial,请检查 LinkedIn 示例 了解如何仅使用 scribe 使用 LinkedIn 的 Api。
What you say is right. Scribe changed it's internals from 1.0 to 1.1 (and greater), though the public apis didn't change, some internals did, and this class
LinkedInBaseStringExtractorImpl
is no longer part of the lib.Anyway, you don't need SpringSocial at all, check the LinkedIn example to see how to consume LinkedIn's Api using just scribe.