0

入門ガイドの Typesafe スタック テンプレートを試す

http://typesafe.com/resources/typesafe-stack/downloading-installing.html

以下のコマンドで、「my_ipaddress の API レート制限を超えました」というエラーが表示されますか?

$ g8 typesafehub/play-scala
This template generates a Scala play 2.0.X project (verbatim means exclude files from parsing) 
verbatim [*.html *.js]:
application_secret [CHANGEME12345678]:
application_name [my_app]: tutorial_play
play_version [2.0.2]: 
dispatch.StatusCode: Unexpected response code: 403
{"message":"API Rate Limit Exceeded for <my_ip_address>"}
    at dispatch.HttpExecutor$$anonfun$when$1.apply(executor.scala:53)
    at dispatch.HttpExecutor$$anonfun$when$1.apply(executor.scala:50)
    at dispatch.HttpExecutor$$anonfun$x$2.apply(executor.scala:41)
    at dispatch.HttpExecutor$$anonfun$x$2.apply(executor.scala:36)
    at dispatch.BlockingHttp$$anonfun$execute$1.apply(Http.scala:54)
    at dispatch.Http.pack(Http.scala:25)
    at dispatch.BlockingHttp$class.execute(Http.scala:53)
    at dispatch.Http.execute(Http.scala:21)
    at dispatch.HttpExecutor$class.x(executor.scala:36)
    at dispatch.Http.x(Http.scala:21)
    at dispatch.HttpExecutor$class.when(executor.scala:50)
    at dispatch.Http.when(Http.scala:21)
    at dispatch.HttpExecutor$class.apply(executor.scala:60)
    at dispatch.Http.apply(Http.scala:21)
    at giter8.Apply$$anonfun$write$1$$anonfun$apply$23.apply(apply.scala:123)
    at giter8.Apply$$anonfun$write$1$$anonfun$apply$23.apply(apply.scala:123)
    at scala.util.control.Exception$Catch$$anonfun$opt$1.apply(Exception.scala:104)
    at scala.util.control.Exception$Catch$$anonfun$opt$1.apply(Exception.scala:104)
    at scala.util.control.Exception$Catch.apply(Exception.scala:88)
    at scala.util.control.Exception$Catch.opt(Exception.scala:104)
    at giter8.Apply$$anonfun$write$1.apply(apply.scala:122)
    at giter8.Apply$$anonfun$write$1.apply(apply.scala:115)
    at scala.collection.LinearSeqOptimized$class.foreach(LinearSeqOptimized.scala:59)
    at scala.collection.immutable.List.foreach(List.scala:45)
    at giter8.Apply$class.write(apply.scala:115)
    at giter8.Giter8.write(giter8.scala:3)
    at giter8.Apply$$anonfun$inspect$1.apply(apply.scala:35)
    at giter8.Apply$$anonfun$inspect$1.apply(apply.scala:21)
    at scala.Either$RightProjection.flatMap(Either.scala:277)
    at giter8.Apply$class.inspect(apply.scala:21)
    at giter8.Giter8.inspect(giter8.scala:3)
    at giter8.Giter8.run(giter8.scala:22)
    at giter8.Giter8.run(giter8.scala:16)
    at giter8.Giter8.run(giter8.scala:3)
    at xsbt.boot.Launch$.run(Launch.scala:54)
    at xsbt.boot.Launch$$anonfun$explicit$1.apply(Launch.scala:43)
    at xsbt.boot.Launch$.launch(Launch.scala:68)
    at xsbt.boot.Launch$.apply(Launch.scala:14)
    at xsbt.boot.Boot$.runImpl(Boot.scala:25)
    at xsbt.boot.Boot$.main(Boot.scala:15)
    at xsbt.boot.Boot.main(Boot.scala)
Error during sbt execution: dispatch.StatusCode: Unexpected response code: 403 {"message":"API Rate Limit Exceeded for <my_ipaddress>"}

このエラーの意味と修正方法

4

2 に答える 2

0

これは Github API に由来します。g8でAPI レート制限を超えました:

認証されていないリクエストは 1 時間あたり 60 件に制限されます

g8 は Github API を内部で使用していました。1 時間で g8 を 60 回以上使用した可能性があります。

于 2013-03-22T11:30:15.097 に答える
0

あとでもう一度試してみてください。プロジェクトをダウンロードしすぎた可能性があります。

于 2013-03-21T15:31:16.587 に答える