好的,我正在尝试将 Hybridauth 与 laravel 4 一起使用。但是,在尝试使用 facebook 登录时,我似乎变得很常见:
认证失败!Facebook 返回了无效的用户 ID。
我已经阅读了所有其他帖子,并且没有运气,所以只是希望有人可以帮助我。
我遵循了本教程:http ://www.mrcasual.com/on/coding/laravel4-package-management-with-composer/
并尝试了其他几种配置均未成功。
这是我的配置/hybridauth.php
<?php
return array(
"base_url" => "http://myapp.dev/social/auth/",
"providers" => array (
"Facebook" => array (
"enabled" => true,
"keys" => array ( "id" => "****", "secret" => "****" ),
),
),
);
这是我的路线:
Route::get('social/{action?}', array("as" => "hybridauth", function($action = "")
{
// check URL segment
if ($action == "auth") {
// process authentication
try {
Hybrid_Endpoint::process();
}
catch (Exception $e) {
// redirect back to http://URL/social/
return Redirect::route('hybridauth');
}
return;
}
try {
// create a HybridAuth object
$socialAuth = new Hybrid_Auth(app_path() . '/config/hybridauth.php');
// authenticate with Facebook
$provider = $socialAuth->authenticate("Facebook");
// fetch user profile
$userProfile = $provider->getUserProfile();
}
catch(Exception $e) {
// exception codes can be found on HybBridAuth's web site
return $e->getMessage();
}
// access user profile data
echo "Connected with: <b>{$provider->id}</b><br />";
echo "As: <b>{$userProfile->displayName}</b><br />";
echo "<pre>" . print_r( $userProfile, true ) . "</pre><br />";
// logout
$provider->logout();
}));
因此,当我访问“myapp.dev/social”时,我被带到了 facebook 注册页面,一切似乎都正常,要求我允许对 myadd.dev 的权限。单击“确定”后,我被带到以下 URL:http://myapp.ie/social#_=_
显示错误的位置。
不确定这是否相关:仅通过观察与 facebook 登录合作的其他网站.. 重定向 URL 看起来像http://somesite.dev/subdomain/#_=_
. 换句话说,他们在 # =之前有一个斜线。这是我的问题,我该如何解决??对 hybridauth 来说非常新,因此非常感谢您的帮助。
哦,我确实意识到这篇文章与其他帖子非常相似,但我还没有找到解决方案。
更新:确切的错误:Authentification failed. The user has canceled the authentication or the provider refused the connection.