Reputation: 2461
I am working on an application that allows the user to login into an Apple account and access iCloud drive, I am also allowing the user to upload all documents on iCloud drive. Does Apple provide any open API to upload documents on the iCloud drive? Or Any node package which allows uploading the document on the iCloud drive?
Upvotes: 0
Views: 1446
Reputation: 54
I don't think the iCloud drive API is publicly available for developers right now. But instead of it you can use CloudKit API, it allows you to query on your iCloud data. You can use CloudKit provided CloudKit JS library in your Node application. Go through this documentation: https://developer.apple.com/documentation/cloudkitjs
Upvotes: -1