我正在使用Play Framework 2.1.3,并希望使用RestFB与Facebook Graph API配合使用,但无法正确安装它。这是我的Build.scala

val appDependencies = Seq(
  “ com.restfb” %%“ restfb”%“ 1.6.12”


val main = play.Project(appName,appVersion,appDependencies).settings(
  解析器+ = Resolver.url(“ restfb(release)”,url(“ http://revetkn.github.com/restfb/repo/releases/”))(Resolver.ivyStylePatterns),
  解析器+ = Resolver.url(“ restfb(snapshot)”,url(“ http://revetkn.github.com/restfb/repo/snapshots/”))(Resolver.ivyStylePatterns),



之后,我运行play update,但它返回:

[错误](*:update)sbt.ResolveException:未解决的依赖项:com.restfb#restfb_2.10; 1.6.12:找不到

如果有人设法正确安装它,我将不胜感激,向我提供一些提示/说明。谢谢!

最佳答案

https://github.com/revetkn/restfb


  RestFB是一个纯Java Facebook Graph API和具有以下功能的旧REST API客户端
  没有外部依赖性。


因此,通过以下方式收集库:

"com.restfb"    % "restfb" % "1.6.12"


The %% is just used for Scala libraries.

09-05 19:52