https://github.com/moemoe89/google-login-ci3
🔑 Google+ login with Codeigniter 3
https://github.com/moemoe89/google-login-ci3
codeigniter google login
Last synced: 8 months ago
JSON representation
🔑 Google+ login with Codeigniter 3
- Host: GitHub
- URL: https://github.com/moemoe89/google-login-ci3
- Owner: moemoe89
- Created: 2015-08-21T01:29:23.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-22T10:57:16.000Z (about 9 years ago)
- Last Synced: 2025-04-03T10:37:48.227Z (9 months ago)
- Topics: codeigniter, google, login
- Language: PHP
- Homepage: https://google-login-ci3.herokuapp.com/
- Size: 646 KB
- Stars: 20
- Watchers: 2
- Forks: 30
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# google-login-ci3
Google Login with Codeigniter 3
## Demo
> https://google-login-ci3.herokuapp.com/
change
```
$config['googleplus']['application_name'] = '';
$config['googleplus']['client_id'] = '';
$config['googleplus']['client_secret'] = '';
$config['googleplus']['redirect_uri'] = '';
$config['googleplus']['api_key'] = '';
$config['googleplus']['scopes'] = array();
```
on application->config->googleplus.php with your key and configuration
the $config['googleplus']['redirect_uri'] = ''; is callback url for authenticate user info..in my case i put authenticate in Welcome controller and index function..so for example my redirect uri is :
```
$config['googleplus']['redirect_uri'] = 'http://localhost/my_directory/';
```
## Tutorial based on
> http://www.9lessons.info/2012/09/login-with-google-account-oauth.html