Open source social sign on PHP Library. HybridAuth goal is to act as an abstract api between your application and various social apis and identities providers such as Facebook, Twitter and Google.
ApacheEx on master
Added client id and secret to r… Merge pull request #1360 from m… (compare)
Hello, my name is Liora and I am currently hunting open source projects for company NeuraLegion (www.neuralegion.com)
We just launched a free annual subscription for open source projects for our AIAST tool NexPloit.
If you are interested, please, reach us on opensource@neuralegion.com!
Thank you for your time and consideration! If you have any questions, please do not hesitate to contact us!
Best,
Hello all, I'm trying to migrate a project from HybridAuth 2.xx to 3.00, and I'm facing an issue with the following call to "Hybrid_Endpoint":
require_once( "Hybrid/Auth.php" );
require_once( "Hybrid/Endpoint.php" );
Hybrid_Endpoint::process();
I haven't seen that too much in the 2.xx documentation, but it appears quite a lot in many examples on the web, as well as in the code I try to migrate.
Hi, I have small test for social login using Hybridauth. Its working with Google, Github, Twitter, LinkedIn, but not with Facebook. Any idea why not? This is my code:
<?php
session_start();
include 'hybridauth/src/autoload.php';
$callback = "https://$_SERVER[HTTP_HOST]" . strtok($_SERVER["REQUEST_URI"], '?'); // callback to this script
$config = ['callback' => $callback, 'keys' => ['id' => 'xxxxxxx', 'secret' => 'xxxxxxxxxxx' ],];
$provider = new Hybridauth\Provider\Facebook($config);
$provider -> authenticate();
$userProfile = $provider -> getUserProfile();
$provider -> disconnect();
echo "<pre>" . print_r($userProfile, true) . "</pre>";
@all I have faved one issue with hybridauth version 2.14.0 after installed social media login/signup extension from mageplaza.
The Error I have faced:
2 exception(s):
Exception #0 (Hybrid_Exception): Endpoint: Error while trying to init Hybrid_Auth: You cannot access this page directly.
Exception #1 (Hybrid_Exception): You cannot access this page directly.
Exception #0 (Hybrid_Exception): Endpoint: Error while trying to init Hybrid_Auth: You cannot access this page directly.
<pre>#1 Hybrid_Endpoint->processAuthStart() called at [vendor/hybridauth/hybridauth/hybridauth/Hybrid/Endpoint.php:51]
#2 Hybrid_Endpoint->__construct() called at [vendor/hybridauth/hybridauth/hybridauth/Hybrid/Endpoint.php:72]