HybridAuth enable developers to easily build social applications to engage websites vistors and customers on a social level by implementing social signin, social sharing, users profiles, friends list, activities stream, status updates and more.
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.
HybridAuth is an easy to install and use social sign on php library. Connect users to a wide variety of well known social networks, grab their profiles, contact lists, update their status and even more.
A comprehensive online user guide that gives the definitive description of HybridAuth features with samples and tutorials.
- <?php
- $config = dirname(__FILE__) . '/library/config.php';
- require_once( "library/Hybrid/Auth.php" );
- try{
- $hybridauth = new Hybrid_Auth( $config );
- $twitter = $hybridauth->authenticate( "Twitter" );
- $user_profile = $twitter->getUserProfile();
- echo "Hi there! " . $user_profile->displayName;
- $twitter->setUserStatus( "Hello world!" );
- $user_contacts = $twitter->getUserContacts();
- }
- catch( Exception $e ){
- echo "Ooophs, we got an error: " . $e->getMessage();
- }
Third party extensions available for serval CMS and PHP frameworks.