forked from qwerty/tupali
63 lines
2.1 KiB
PHP
63 lines
2.1 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* HybridAuth
|
||
|
* http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth
|
||
|
* (c) 2009-2015, HybridAuth authors | http://hybridauth.sourceforge.net/licenses.html
|
||
|
*/
|
||
|
// ----------------------------------------------------------------------------------------
|
||
|
// HybridAuth Config file: http://hybridauth.sourceforge.net/userguide/Configuration.html
|
||
|
// ----------------------------------------------------------------------------------------
|
||
|
|
||
|
return
|
||
|
array(
|
||
|
"base_url" => "https://tupale.co/milfs/librerias/hybridauth/",
|
||
|
"providers" => array(
|
||
|
// openid providers
|
||
|
"OpenID" => array(
|
||
|
"enabled" => true
|
||
|
),
|
||
|
"Yahoo" => array(
|
||
|
"enabled" => true,
|
||
|
"keys" => array("key" => "", "secret" => ""),
|
||
|
),
|
||
|
"AOL" => array(
|
||
|
"enabled" => true
|
||
|
),
|
||
|
"Google" => array(
|
||
|
"enabled" => true,
|
||
|
"keys" => array("id" => "6281709521-j4v6spjk7chtka41ltgi90nblba88gl2.apps.googleusercontent.com", "secret" => "I4dmWZEfj37Qk9d8U63wsIJF"),
|
||
|
),
|
||
|
"Facebook" => array(
|
||
|
"enabled" => true,
|
||
|
"keys" => array("id" => "471344416409568", "secret" => "752fbc3bfc6853e3f0e09e3a9e6f7e6b"),
|
||
|
"trustForwarded" => false
|
||
|
),
|
||
|
"Twitter" => array(
|
||
|
"enabled" => true,
|
||
|
"keys" => array("key" => "QCr9KK55sn4aulMzVAgrItD4s", "secret" => "3MnFdt8JLHWx8TyV8FSQtn6dutMJ3SZkuXqPEaLkDOx0t41mur"),
|
||
|
"includeEmail" => false
|
||
|
),
|
||
|
// windows live
|
||
|
"Live" => array(
|
||
|
"enabled" => true,
|
||
|
"keys" => array("id" => "", "secret" => "")
|
||
|
),
|
||
|
"LinkedIn" => array(
|
||
|
"enabled" => true,
|
||
|
"keys" => array("key" => "", "secret" => "")
|
||
|
),
|
||
|
"Foursquare" => array(
|
||
|
"enabled" => true,
|
||
|
"keys" => array("id" => "", "secret" => "")
|
||
|
),
|
||
|
),
|
||
|
// If you want to enable logging, set 'debug_mode' to true.
|
||
|
// You can also set it to
|
||
|
// - "error" To log only error messages. Useful in production
|
||
|
// - "info" To log info and error messages (ignore debug messages)
|
||
|
"debug_mode" => false,
|
||
|
// Path to file writable by the web server. Required if 'debug_mode' is not false
|
||
|
"debug_file" => "",
|
||
|
);
|