ファイルを一覧表示する Google ドライブ API とのバンドルを行っています。私は IndexAction に、ユーザーが許可を与える必要があるか、すでに与えているかを確認する if を持っています。必要に応じて、Google から URL を取得し、そのリンクにリダイレクトします。
Googleコンソールで、リダイレクトリンクとして配置しました:
www.googlebundle/firstTime
私の GoogleDriveController には、
public function firstTimeAction() {
(...)
}
そして私のルーティングで私はこれを得ました:
FilesGoogleDriveBundle_firstTime:
pattern: /firstTime
defaults: { _controller: "FilesGoogleDriveBundle:GoogleDrive:firstTime" }
requirements: { _method: get }
FilesGoogleDriveBundle_homepage:
pattern: /Drive/{id}
defaults: { _controller: FilesGoogleDriveBundle:GoogleDrive:index }
しかし、prod.log に次のエラーが表示されます。
[2012-11-26 16:50:14] request.ERROR: Symfony\Component\HttpKernel\Exception\NotFoundHttpException: No route found for "GET /firstTime" (uncaught exception) at /var/www/Symfony/app/cache/prod/classes.php line 4564 [] []
何が起こっているか知っている人はいますか?