私のプロジェクトではほとんどすべてがうまく機能していますが、データベース(FOSUserBundle)に通信がないユーザーで(Facebookを使用して)ログインすると、エラーが発生するだけで/registration/{id}にリダイレクトされます。
The form's view data is expected to be an instance of class Naroga\Reader\CommonBundle\Entity\User, but is an instance of class HWI\Bundle\OAuthBundle\OAuth\Response\PathUserResponse. You can avoid this error by setting the "data_class" option to null or by adding a view transformer that transforms an instance of class HWI\Bundle\OAuthBundle\OAuth\Response\PathUserResponse to an instance of Naroga\Reader\CommonBundle\Entity\User.
また、次の行を削除するには、connect.confirm.html.twigを上書きする必要がありました。
{% if userInformation.profilePicture is not empty %}
<img src="{{ userInformation.profilePicture }}" />
{% endif %}
PathUserResponseにはprofilePictureメソッドがないとのことです。私の推測では、PathUserResponseを使用するべきではありませんが、何を間違えたのかわかりません。誰かが私を正しい方向に向けることができますか?