Hybrid auth with Yii causing a redirect loop

纵饮孤独 提交于 2019-11-29 15:20:12
  1. Hybrid Auth login for twitter and facebook requires a valid domain not localhost.

  2. Your base_url in configuration file "hybridauth.php" should be set to "/hauth/endpoint" i.e. it must point to the endpoint. If you have removed index.php through .htaccess then use "/index.php/hauth/endpoint".

  3. Set permissions of hybridauth.log in Logs folder to writable.

Reference Link: http://hybridauth.sourceforge.net/userguide/Configuration.html

Did you noticed the base url in your config? Its where the callback is returned during auth and you must use live web domain to test it.

"base_url" => "http://localhost/yiiauth/authtest/",

Also twitter requires additional tokens to be created , i hope you have done that already.

I have working hybridauth on my test website: www.bemployable.com

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!