├── bower.json ├── example.html ├── README.md ├── controllers.js └── src └── angular-googleapi.js /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-googleapi", 3 | "version": "0.0.2", 4 | "main": "src/angular-googleapi.js", 5 | "ignore": [ 6 | "**/.*", 7 | "node_modules", 8 | "components", 9 | "bower_components", 10 | "test", 11 | "tests", 12 | "vendor" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /example.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Client-side authentication demo 6 | 7 | 8 | 9 |
10 |
11 | 12 | 13 | 14 | 15 |
16 | 17 | 20 |
21 |

You're authenticated!

22 | 23 | Logged in as {{currentUser.displayName}} 24 | 25 |
26 |
27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | angular-googleapi 2 | ================= 3 | 4 | angular-googleapi makes it easy to use google apis from angular. So far we have support for login and a couple of google calendar methods, but it should be super easy to add others. 5 | 6 | Installation 7 | ------------ 8 | 9 | ```` 10 | bower install angular-googleapi 11 | ```` 12 | 13 | Or just download src/angular-googleapi.js 14 | 15 | Then in your angular module add angular-googleapi as a dependency. 16 | 17 | Usage 18 | ----- 19 | 20 | The module will automatically load and initialize the Google API. 21 | There is no need to manually include a `