Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/weisjohn/icloud
Access the iCloud API
https://github.com/weisjohn/icloud
icloud nodejs
Last synced: about 1 month ago
JSON representation
Access the iCloud API
- Host: GitHub
- URL: https://github.com/weisjohn/icloud
- Owner: weisjohn
- License: mit
- Created: 2014-10-06T17:35:58.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-05-04T19:53:55.000Z (over 7 years ago)
- Last Synced: 2024-04-23T16:21:22.541Z (8 months ago)
- Topics: icloud, nodejs
- Language: JavaScript
- Size: 4.88 KB
- Stars: 37
- Watchers: 9
- Forks: 14
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
icloud
======Access the iCloud API
### usage
```javascript
var icloud = require('icloud');var instance = icloud();
instance.login("username", "password", function(err) {
if (err) return console.log('login failed');
instance.contacts(function(err, results) {
if (err) return console.log('failed to fetch contacts');
console.log(results.contacts);
});
});
```### services
Contacts is the only service implemented so far. Pull-requests welcome.
### credits
The implementation is heavily inspired by [pycloud](https://github.com/picklepete/pyicloud/)