https://github.com/raiseandfall/cordova-angular-social-networks
A set of AngularJS services for Social Networks APIs.
https://github.com/raiseandfall/cordova-angular-social-networks
Last synced: 8 months ago
JSON representation
A set of AngularJS services for Social Networks APIs.
- Host: GitHub
- URL: https://github.com/raiseandfall/cordova-angular-social-networks
- Owner: raiseandfall
- Created: 2014-02-10T02:52:29.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-09T22:53:29.000Z (about 12 years ago)
- Last Synced: 2023-08-02T03:11:24.203Z (almost 3 years ago)
- Language: JavaScript
- Homepage:
- Size: 195 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
Cordova + AngularJS + Social Networks
=====================================
A set of AngularJS factories to Social Networks APIs use in Cordova.
The idea is to :
* have a ready-to-use API for "login with {social network}" types, using Cordova InAppBrowser;
* use it as an AngularJS module;
* use the social networks API actions ( share, tweet, like... )
---
## Status : In Development
The module is still in early development.
See [Changelog](https://github.com/raiseandfall/cordova-angular-social-networks/blob/master/CHANGELOG.md) for more details.
---
## Install
Coming soon
---
## Contribute
Clone the repository
```bash
$ git clone git@github.com:raiseandfall/cordova-angular-social-networks.git
$ cd cordova-angular-social-networks
```
Install dependencies
```bash
$ npm install
$ bower install
```
The project uses grunt :
```bash
$ grunt test # will run the karma tests
$ grunt dev # Connect server & watch JS sources files for changes; run tests if source files change
$ grunt build # Build the sources to build/ folder
```
---
## API
### Factory `FacebookManager`
#### `FacebookManager.set()`
#### `FacebookManager.get()`
#### `FacebookManager.login()`
#### `FacebookManager.share()`
#### Factory `TwitterManager` ( coming soon )
#### `TwitterManager.set()`
#### `TwitterManager.get()`
#### `TwitterManager.login()`
#### `TwitterManager.tweet()`
#### Factory `LinkedinManager` ( coming soon )
#### `LinkedinManager.set()`
#### `LinkedinManager.login()`
#### `LinkedinManager.share()`
---
## Examples
Coming soon