0

所以我正在尝试安装 fbgraph 模块以在游戏框架中对其进行测试。根据文档(http://www.playframework.org/modules/fbgraph-0.3/home),我应该下载 fb graph 模块,然后使用以下命令安装它:

play install fbgraph-{version}

当我这样做时,我得到这个错误:

[error] Not a valid command: install (similar: initialize, inspect, shell)
[error] Not a valid project ID: install
[error] Not a valid configuration: install (similar: optional)
[error] Not a valid key: install (similar: initialize, dist, stage)
[error] install
[error]        ^

有没有更好的方法来做到这一点?Maven依赖可能是?

先感谢您。

4

1 回答 1

1

您在播放 1 和播放 2 中使用了插件: http ://www.playframework.org/modules

这些模块仅适用于 Play 1.x 系列。

Play 1 与 play 2 不兼容。您可以在其中找到 play 2 的插件: https ://github.com/playframework/Play20/wiki/Modules

也许您对http://restfb.com/感到满意。

您可以添加 /project/Build.scala

val appDependencies = Seq(
     "com.restfb" % "restfb" % "1.6.11" //this line should be new
)
于 2012-11-08T20:53:55.397 回答