├── .gitignore ├── LICENSE ├── Oauth2.php ├── README.md ├── example ├── application │ ├── cache │ │ └── index.html │ ├── config │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── foreign_chars.php │ │ ├── hooks.php │ │ ├── index.html │ │ ├── memcached.php │ │ ├── migration.php │ │ ├── mimes.php │ │ ├── oauth2.php │ │ ├── profiler.php │ │ ├── routes.php │ │ ├── smileys.php │ │ └── user_agents.php │ ├── controllers │ │ ├── index.html │ │ ├── logout.php │ │ ├── sns.php │ │ └── welcome.php │ ├── core │ │ └── index.html │ ├── helpers │ │ └── index.html │ ├── hooks │ │ └── index.html │ ├── index.html │ ├── language │ │ └── english │ │ │ └── index.html │ ├── libraries │ │ ├── Oauth2.php │ │ ├── index.html │ │ └── oauth2 │ │ │ ├── Exception.php │ │ │ ├── OAuth2.php │ │ │ ├── Provider.php │ │ │ ├── Provider │ │ │ ├── 10086.php │ │ │ ├── 163.php │ │ │ ├── 360.php │ │ │ ├── Baidu.php │ │ │ ├── Douban.php │ │ │ ├── Duoshuo.php │ │ │ ├── Feixin.php │ │ │ ├── Kaixin.php │ │ │ ├── Qq.php │ │ │ ├── Renren.php │ │ │ ├── Sohu.php │ │ │ ├── Taobao.php │ │ │ ├── Tianyi.php │ │ │ ├── Tweibo.php │ │ │ ├── Weibo.php │ │ │ ├── Weixin.php │ │ │ └── beyond the wall │ │ │ │ ├── Appnet.php │ │ │ │ ├── Blooie.php │ │ │ │ ├── Facebook.php │ │ │ │ ├── Foursquare.php │ │ │ │ ├── Github.php │ │ │ │ ├── Google.php │ │ │ │ ├── Instagram.php │ │ │ │ ├── Mailchimp.php │ │ │ │ ├── Mailru.php │ │ │ │ ├── Paypal.php │ │ │ │ ├── Soundcloud.php │ │ │ │ ├── Vkontakte.php │ │ │ │ ├── Windowslive.php │ │ │ │ └── Yandex.php │ │ │ ├── Token.php │ │ │ ├── Token │ │ │ ├── Access.php │ │ │ └── Authorize.php │ │ │ └── index.html │ ├── logs │ │ └── index.html │ ├── models │ │ └── index.html │ ├── third_party │ │ └── index.html │ └── views │ │ ├── errors │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ │ ├── index.html │ │ └── welcome_message.php ├── bd_dc241d3dd58dc598.txt ├── config.yaml ├── index.php ├── license.txt ├── system │ ├── core │ │ ├── Benchmark.php │ │ ├── CodeIgniter.php │ │ ├── Common.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Exceptions.php │ │ ├── Hooks.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Log.php │ │ ├── Model.php │ │ ├── Output.php │ │ ├── Router.php │ │ ├── Security.php │ │ ├── URI.php │ │ ├── Utf8.php │ │ └── index.html │ ├── database │ │ ├── DB.php │ │ ├── DB_cache.php │ │ ├── DB_driver.php │ │ ├── DB_forge.php │ │ ├── DB_query_builder.php │ │ ├── DB_result.php │ │ ├── DB_utility.php │ │ ├── drivers │ │ │ ├── cubrid │ │ │ │ ├── cubrid_driver.php │ │ │ │ ├── cubrid_forge.php │ │ │ │ ├── cubrid_result.php │ │ │ │ ├── cubrid_utility.php │ │ │ │ └── index.html │ │ │ ├── ibase │ │ │ │ ├── ibase_driver.php │ │ │ │ ├── ibase_forge.php │ │ │ │ ├── ibase_result.php │ │ │ │ ├── ibase_utility.php │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── mssql │ │ │ │ ├── index.html │ │ │ │ ├── mssql_driver.php │ │ │ │ ├── mssql_forge.php │ │ │ │ ├── mssql_result.php │ │ │ │ └── mssql_utility.php │ │ │ ├── mysql │ │ │ │ ├── index.html │ │ │ │ ├── mysql_driver.php │ │ │ │ ├── mysql_forge.php │ │ │ │ ├── mysql_result.php │ │ │ │ └── mysql_utility.php │ │ │ ├── mysqli │ │ │ │ ├── index.html │ │ │ │ ├── mysqli_driver.php │ │ │ │ ├── mysqli_forge.php │ │ │ │ ├── mysqli_result.php │ │ │ │ └── mysqli_utility.php │ │ │ ├── oci8 │ │ │ │ ├── index.html │ │ │ │ ├── oci8_driver.php │ │ │ │ ├── oci8_forge.php │ │ │ │ ├── oci8_result.php │ │ │ │ └── oci8_utility.php │ │ │ ├── odbc │ │ │ │ ├── index.html │ │ │ │ ├── odbc_driver.php │ │ │ │ ├── odbc_forge.php │ │ │ │ ├── odbc_result.php │ │ │ │ └── odbc_utility.php │ │ │ ├── pdo │ │ │ │ ├── index.html │ │ │ │ ├── pdo_driver.php │ │ │ │ ├── pdo_forge.php │ │ │ │ ├── pdo_result.php │ │ │ │ ├── pdo_utility.php │ │ │ │ └── subdrivers │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ │ └── pdo_sqlsrv_forge.php │ │ │ ├── postgre │ │ │ │ ├── index.html │ │ │ │ ├── postgre_driver.php │ │ │ │ ├── postgre_forge.php │ │ │ │ ├── postgre_result.php │ │ │ │ └── postgre_utility.php │ │ │ ├── sqlite │ │ │ │ ├── index.html │ │ │ │ ├── sqlite_driver.php │ │ │ │ ├── sqlite_forge.php │ │ │ │ ├── sqlite_result.php │ │ │ │ └── sqlite_utility.php │ │ │ ├── sqlite3 │ │ │ │ ├── index.html │ │ │ │ ├── sqlite3_driver.php │ │ │ │ ├── sqlite3_forge.php │ │ │ │ ├── sqlite3_result.php │ │ │ │ └── sqlite3_utility.php │ │ │ └── sqlsrv │ │ │ │ ├── index.html │ │ │ │ ├── sqlsrv_driver.php │ │ │ │ ├── sqlsrv_forge.php │ │ │ │ ├── sqlsrv_result.php │ │ │ │ └── sqlsrv_utility.php │ │ └── index.html │ ├── fonts │ │ ├── index.html │ │ └── texb.ttf │ ├── helpers │ │ ├── array_helper.php │ │ ├── captcha_helper.php │ │ ├── cookie_helper.php │ │ ├── date_helper.php │ │ ├── directory_helper.php │ │ ├── download_helper.php │ │ ├── email_helper.php │ │ ├── file_helper.php │ │ ├── form_helper.php │ │ ├── html_helper.php │ │ ├── index.html │ │ ├── inflector_helper.php │ │ ├── language_helper.php │ │ ├── number_helper.php │ │ ├── path_helper.php │ │ ├── security_helper.php │ │ ├── smiley_helper.php │ │ ├── string_helper.php │ │ ├── text_helper.php │ │ ├── typography_helper.php │ │ ├── url_helper.php │ │ └── xml_helper.php │ ├── index.html │ ├── language │ │ ├── english │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ └── index.html │ └── libraries │ │ ├── Cache │ │ ├── Cache.php │ │ ├── drivers │ │ │ ├── Cache_apc.php │ │ │ ├── Cache_dummy.php │ │ │ ├── Cache_file.php │ │ │ ├── Cache_memcached.php │ │ │ ├── Cache_redis.php │ │ │ ├── Cache_wincache.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Calendar.php │ │ ├── Cart.php │ │ ├── Driver.php │ │ ├── Email.php │ │ ├── Encrypt.php │ │ ├── Form_validation.php │ │ ├── Ftp.php │ │ ├── Image_lib.php │ │ ├── Javascript.php │ │ ├── Migration.php │ │ ├── Pagination.php │ │ ├── Parser.php │ │ ├── Profiler.php │ │ ├── Session │ │ ├── Session.php │ │ ├── drivers │ │ │ ├── Session_cookie.php │ │ │ ├── Session_native.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Table.php │ │ ├── Trackback.php │ │ ├── Typography.php │ │ ├── Unit_test.php │ │ ├── Upload.php │ │ ├── User_agent.php │ │ ├── Xmlrpc.php │ │ ├── Xmlrpcs.php │ │ ├── Zip.php │ │ ├── index.html │ │ └── javascript │ │ ├── Jquery.php │ │ └── index.html └── xtaoAuth.html └── oauth2 ├── Exception.php ├── OAuth2.php ├── Provider.php ├── Provider ├── 10086.php ├── 163.php ├── 360.php ├── Baidu.php ├── Douban.php ├── Duoshuo.php ├── Feixin.php ├── Kaixin.php ├── Qq.php ├── Renren.php ├── Sohu.php ├── Taobao.php ├── Tianyi.php ├── Tweibo.php ├── Weibo.php ├── Weixin.php └── beyond the wall │ ├── Appnet.php │ ├── Blooie.php │ ├── Facebook.php │ ├── Foursquare.php │ ├── Github.php │ ├── Google.php │ ├── Instagram.php │ ├── Mailchimp.php │ ├── Mailru.php │ ├── Paypal.php │ ├── Soundcloud.php │ ├── Vkontakte.php │ ├── Windowslive.php │ └── Yandex.php ├── Token.php ├── Token ├── Access.php └── Authorize.php └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/LICENSE -------------------------------------------------------------------------------- /Oauth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/Oauth2.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/README.md -------------------------------------------------------------------------------- /example/application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/cache/index.html -------------------------------------------------------------------------------- /example/application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/autoload.php -------------------------------------------------------------------------------- /example/application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/config.php -------------------------------------------------------------------------------- /example/application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/constants.php -------------------------------------------------------------------------------- /example/application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/database.php -------------------------------------------------------------------------------- /example/application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/doctypes.php -------------------------------------------------------------------------------- /example/application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/foreign_chars.php -------------------------------------------------------------------------------- /example/application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/hooks.php -------------------------------------------------------------------------------- /example/application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/index.html -------------------------------------------------------------------------------- /example/application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/memcached.php -------------------------------------------------------------------------------- /example/application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/migration.php -------------------------------------------------------------------------------- /example/application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/mimes.php -------------------------------------------------------------------------------- /example/application/config/oauth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/oauth2.php -------------------------------------------------------------------------------- /example/application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/profiler.php -------------------------------------------------------------------------------- /example/application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/routes.php -------------------------------------------------------------------------------- /example/application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/smileys.php -------------------------------------------------------------------------------- /example/application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/config/user_agents.php -------------------------------------------------------------------------------- /example/application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/controllers/index.html -------------------------------------------------------------------------------- /example/application/controllers/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/controllers/logout.php -------------------------------------------------------------------------------- /example/application/controllers/sns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/controllers/sns.php -------------------------------------------------------------------------------- /example/application/controllers/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/controllers/welcome.php -------------------------------------------------------------------------------- /example/application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/core/index.html -------------------------------------------------------------------------------- /example/application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/helpers/index.html -------------------------------------------------------------------------------- /example/application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/hooks/index.html -------------------------------------------------------------------------------- /example/application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/index.html -------------------------------------------------------------------------------- /example/application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/language/english/index.html -------------------------------------------------------------------------------- /example/application/libraries/Oauth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/Oauth2.php -------------------------------------------------------------------------------- /example/application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/index.html -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Exception.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/OAuth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/OAuth2.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/10086.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/10086.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/163.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/163.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/360.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/360.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Baidu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Baidu.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Douban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Douban.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Duoshuo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Duoshuo.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Feixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Feixin.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Kaixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Kaixin.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Qq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Qq.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Renren.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Renren.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Sohu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Sohu.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Taobao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Taobao.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Tianyi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Tianyi.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Tweibo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Tweibo.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Weibo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Weibo.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/Weixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/Weixin.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Appnet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Appnet.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Blooie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Blooie.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Facebook.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Foursquare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Foursquare.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Github.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Github.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Google.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Google.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Instagram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Instagram.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Mailchimp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Mailchimp.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Mailru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Mailru.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Paypal.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Soundcloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Soundcloud.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Vkontakte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Vkontakte.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Windowslive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Windowslive.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Provider/beyond the wall/Yandex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Provider/beyond the wall/Yandex.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Token.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Token/Access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Token/Access.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/Token/Authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/Token/Authorize.php -------------------------------------------------------------------------------- /example/application/libraries/oauth2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/libraries/oauth2/index.html -------------------------------------------------------------------------------- /example/application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/logs/index.html -------------------------------------------------------------------------------- /example/application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/models/index.html -------------------------------------------------------------------------------- /example/application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/third_party/index.html -------------------------------------------------------------------------------- /example/application/views/errors/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/views/errors/error_404.php -------------------------------------------------------------------------------- /example/application/views/errors/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/views/errors/error_db.php -------------------------------------------------------------------------------- /example/application/views/errors/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/views/errors/error_general.php -------------------------------------------------------------------------------- /example/application/views/errors/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/views/errors/error_php.php -------------------------------------------------------------------------------- /example/application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/views/errors/index.html -------------------------------------------------------------------------------- /example/application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/views/index.html -------------------------------------------------------------------------------- /example/application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/application/views/welcome_message.php -------------------------------------------------------------------------------- /example/bd_dc241d3dd58dc598.txt: -------------------------------------------------------------------------------- 1 | BAIDU -------------------------------------------------------------------------------- /example/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/config.yaml -------------------------------------------------------------------------------- /example/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/index.php -------------------------------------------------------------------------------- /example/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/license.txt -------------------------------------------------------------------------------- /example/system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Benchmark.php -------------------------------------------------------------------------------- /example/system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /example/system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Common.php -------------------------------------------------------------------------------- /example/system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Config.php -------------------------------------------------------------------------------- /example/system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Controller.php -------------------------------------------------------------------------------- /example/system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Exceptions.php -------------------------------------------------------------------------------- /example/system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Hooks.php -------------------------------------------------------------------------------- /example/system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Input.php -------------------------------------------------------------------------------- /example/system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Lang.php -------------------------------------------------------------------------------- /example/system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Loader.php -------------------------------------------------------------------------------- /example/system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Log.php -------------------------------------------------------------------------------- /example/system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Model.php -------------------------------------------------------------------------------- /example/system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Output.php -------------------------------------------------------------------------------- /example/system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Router.php -------------------------------------------------------------------------------- /example/system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Security.php -------------------------------------------------------------------------------- /example/system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/URI.php -------------------------------------------------------------------------------- /example/system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/Utf8.php -------------------------------------------------------------------------------- /example/system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/core/index.html -------------------------------------------------------------------------------- /example/system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/DB.php -------------------------------------------------------------------------------- /example/system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/DB_cache.php -------------------------------------------------------------------------------- /example/system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/DB_driver.php -------------------------------------------------------------------------------- /example/system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/DB_forge.php -------------------------------------------------------------------------------- /example/system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /example/system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/DB_result.php -------------------------------------------------------------------------------- /example/system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/DB_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/ibase/ibase_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/ibase/ibase_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/ibase/ibase_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/ibase/ibase_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/ibase/ibase_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/ibase/ibase_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/ibase/ibase_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlite3/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/sqlite3/sqlite3_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlite3/sqlite3_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlite3/sqlite3_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlite3/sqlite3_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlite3/sqlite3_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlite3/sqlite3_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlite3/sqlite3_utility.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /example/system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /example/system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /example/system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/database/index.html -------------------------------------------------------------------------------- /example/system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/fonts/index.html -------------------------------------------------------------------------------- /example/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/fonts/texb.ttf -------------------------------------------------------------------------------- /example/system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/array_helper.php -------------------------------------------------------------------------------- /example/system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /example/system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /example/system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/date_helper.php -------------------------------------------------------------------------------- /example/system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /example/system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/download_helper.php -------------------------------------------------------------------------------- /example/system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/email_helper.php -------------------------------------------------------------------------------- /example/system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/file_helper.php -------------------------------------------------------------------------------- /example/system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/form_helper.php -------------------------------------------------------------------------------- /example/system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/html_helper.php -------------------------------------------------------------------------------- /example/system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/index.html -------------------------------------------------------------------------------- /example/system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /example/system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/language_helper.php -------------------------------------------------------------------------------- /example/system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/number_helper.php -------------------------------------------------------------------------------- /example/system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/path_helper.php -------------------------------------------------------------------------------- /example/system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/security_helper.php -------------------------------------------------------------------------------- /example/system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /example/system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/string_helper.php -------------------------------------------------------------------------------- /example/system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/text_helper.php -------------------------------------------------------------------------------- /example/system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /example/system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/url_helper.php -------------------------------------------------------------------------------- /example/system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /example/system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/index.html -------------------------------------------------------------------------------- /example/system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /example/system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/date_lang.php -------------------------------------------------------------------------------- /example/system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/db_lang.php -------------------------------------------------------------------------------- /example/system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/email_lang.php -------------------------------------------------------------------------------- /example/system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /example/system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /example/system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /example/system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/index.html -------------------------------------------------------------------------------- /example/system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /example/system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/number_lang.php -------------------------------------------------------------------------------- /example/system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /example/system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /example/system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /example/system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/language/index.html -------------------------------------------------------------------------------- /example/system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /example/system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /example/system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /example/system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /example/system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /example/system/libraries/Cache/drivers/Cache_redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Cache/drivers/Cache_redis.php -------------------------------------------------------------------------------- /example/system/libraries/Cache/drivers/Cache_wincache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Cache/drivers/Cache_wincache.php -------------------------------------------------------------------------------- /example/system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Cache/drivers/index.html -------------------------------------------------------------------------------- /example/system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /example/system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Calendar.php -------------------------------------------------------------------------------- /example/system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Cart.php -------------------------------------------------------------------------------- /example/system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Driver.php -------------------------------------------------------------------------------- /example/system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Email.php -------------------------------------------------------------------------------- /example/system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /example/system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /example/system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Ftp.php -------------------------------------------------------------------------------- /example/system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /example/system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Javascript.php -------------------------------------------------------------------------------- /example/system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Migration.php -------------------------------------------------------------------------------- /example/system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Pagination.php -------------------------------------------------------------------------------- /example/system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Parser.php -------------------------------------------------------------------------------- /example/system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Profiler.php -------------------------------------------------------------------------------- /example/system/libraries/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Session/Session.php -------------------------------------------------------------------------------- /example/system/libraries/Session/drivers/Session_cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Session/drivers/Session_cookie.php -------------------------------------------------------------------------------- /example/system/libraries/Session/drivers/Session_native.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Session/drivers/Session_native.php -------------------------------------------------------------------------------- /example/system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Session/drivers/index.html -------------------------------------------------------------------------------- /example/system/libraries/Session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Session/index.html -------------------------------------------------------------------------------- /example/system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Table.php -------------------------------------------------------------------------------- /example/system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Trackback.php -------------------------------------------------------------------------------- /example/system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Typography.php -------------------------------------------------------------------------------- /example/system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /example/system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Upload.php -------------------------------------------------------------------------------- /example/system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/User_agent.php -------------------------------------------------------------------------------- /example/system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /example/system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /example/system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/Zip.php -------------------------------------------------------------------------------- /example/system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/index.html -------------------------------------------------------------------------------- /example/system/libraries/javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/javascript/Jquery.php -------------------------------------------------------------------------------- /example/system/libraries/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/example/system/libraries/javascript/index.html -------------------------------------------------------------------------------- /example/xtaoAuth.html: -------------------------------------------------------------------------------- 1 | 2 | BcLRzGdZfe9D2XaIk52d8g== -------------------------------------------------------------------------------- /oauth2/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Exception.php -------------------------------------------------------------------------------- /oauth2/OAuth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/OAuth2.php -------------------------------------------------------------------------------- /oauth2/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider.php -------------------------------------------------------------------------------- /oauth2/Provider/10086.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/10086.php -------------------------------------------------------------------------------- /oauth2/Provider/163.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/163.php -------------------------------------------------------------------------------- /oauth2/Provider/360.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/360.php -------------------------------------------------------------------------------- /oauth2/Provider/Baidu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Baidu.php -------------------------------------------------------------------------------- /oauth2/Provider/Douban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Douban.php -------------------------------------------------------------------------------- /oauth2/Provider/Duoshuo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Duoshuo.php -------------------------------------------------------------------------------- /oauth2/Provider/Feixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Feixin.php -------------------------------------------------------------------------------- /oauth2/Provider/Kaixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Kaixin.php -------------------------------------------------------------------------------- /oauth2/Provider/Qq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Qq.php -------------------------------------------------------------------------------- /oauth2/Provider/Renren.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Renren.php -------------------------------------------------------------------------------- /oauth2/Provider/Sohu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Sohu.php -------------------------------------------------------------------------------- /oauth2/Provider/Taobao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Taobao.php -------------------------------------------------------------------------------- /oauth2/Provider/Tianyi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Tianyi.php -------------------------------------------------------------------------------- /oauth2/Provider/Tweibo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Tweibo.php -------------------------------------------------------------------------------- /oauth2/Provider/Weibo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Weibo.php -------------------------------------------------------------------------------- /oauth2/Provider/Weixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/Weixin.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Appnet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Appnet.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Blooie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Blooie.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Facebook.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Foursquare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Foursquare.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Github.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Github.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Google.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Google.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Instagram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Instagram.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Mailchimp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Mailchimp.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Mailru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Mailru.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Paypal.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Soundcloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Soundcloud.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Vkontakte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Vkontakte.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Windowslive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Windowslive.php -------------------------------------------------------------------------------- /oauth2/Provider/beyond the wall/Yandex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Provider/beyond the wall/Yandex.php -------------------------------------------------------------------------------- /oauth2/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Token.php -------------------------------------------------------------------------------- /oauth2/Token/Access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Token/Access.php -------------------------------------------------------------------------------- /oauth2/Token/Authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/Token/Authorize.php -------------------------------------------------------------------------------- /oauth2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldtech051/CodeIgniter-Oauth2-SocialAuth/HEAD/oauth2/index.html --------------------------------------------------------------------------------