0

そのため、fbgraph モジュールをインストールして、play フレームワークでテストしようとしています。ドキュメント (http://www.playframework.org/modules/fbgraph-0.3/home) によると、fb グラフ モジュールをダウンロードし、次を使用してインストールする必要があります。

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

Play1とPlay2のプラグインを使用しました: http ://www.playframework.org/modules

これらのモジュールは、Play1.xシリーズ専用です。

Play1はPlay2と互換性がありません。Play2のプラグインがあります: 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 に答える