apple-icloudapi
v1.0.4
Published
iCloud API Wrapper
Downloads
28
Maintainers
Readme
iCloud API
Features
- 2FA Authorization
- Devices localization (does not include FMF)
- Family devices support
- Device localization address, distance & driving time
Resources
- @matt-kruse | find-my-iphone | For FindMy service
- @zzxx3081 | iCloud_Internal_API | For 2FA authorization
Development environment
System Requirements
Installation
npm install apple-icloudapi
And You're ready to go! :tada:
Example
var icloud = require("icloudapi");
icloud.icloudSettingsFile = "./settings.json";
icloud.getDevices((err, devices) => {
if (err) return err;
return console.log(devices);
/* ^^ Returns array of devices */
})
For more information see Wiki Page
Support
If You encounter any issues, create issue and describe Your issue. You can support me on paypal, link
Create a bug report
If You see an error message, please create bug report. This would help us fixing errors in the future version of iCloud API.
Create a feature request
If You have an idea that we can add to our project, please create feature request and describe Your idea. That way we can upgrade out project over time with new ideas. Thanks! Pull requests are welcome too!