https://github.com/ufocoder/yii2-syncsocial-demo
There's a demo yii2 application for yii2-SyncSocial extension.
https://github.com/ufocoder/yii2-syncsocial-demo
Last synced: about 1 month ago
JSON representation
There's a demo yii2 application for yii2-SyncSocial extension.
- Host: GitHub
- URL: https://github.com/ufocoder/yii2-syncsocial-demo
- Owner: ufocoder
- License: mit
- Created: 2015-03-21T23:58:31.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-25T16:50:57.000Z (over 11 years ago)
- Last Synced: 2025-02-22T07:50:04.478Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 120 KB
- Stars: 4
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Demo application for Yii2-SyncSocial
====
Create `syncsocial.json` in project folder and put this code:
```json
{
"facebook": {
"clientId": "YOUR_FACEBOOK_APP_KEY",
"clientSecret": "YOUR_FACEBOOK_APP_SECRET",
"scope": "offline_access,publish_actions,read_stream"
},
"vkontakte": {
"clientId": "YOUR_VKONTAKTE_APP_KEY",
"clientSecret": "YOUR_VKONTAKTE_APP_SECRET",
"scope": "wall,offline"
},
"twitter": {
"consumerKey": "YOUR_TWITTER_APP_KEY",
"consumerSecret": "YOUR_TWITTER_APP_SECRET"
},
"google": {
"clientId": "YOUR_GOOGLE_APP_KEY",
"clientSecret": "YOUR_GOOGLE_APP_SECRET",
"scope": "profile email https://www.googleapis.com/auth/plus.me"
}
}
```