hi i am trying to use facebook graph api for login through facebook. i am using code below to show login
<?php $this->widget('ext.yii-facebook-opengraph.plugins.LoginButton', array(
'show_faces'=>true,
'registration_url'=>'http://mysite/index.php/users/facebookregister',
'oauth'=>true, // JS SDK -enable OAuth 2.0
)); ?>
and in the redirected page i am doing
<?php $userinfo = Yii::app()->facebook->getInfo() // gets the Graph info of the current user ?>
but it gives me error
Property "LoginButton.oauth" is not defined.
i am follwing this url to http://www.yiiframework.com/extension/facebook-opengraph/