Vinay Bagale
Vinay Bagale

Reputation: 2461

Upload document on iCloud drive using node JS

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

Answers (1)

Anee Mes
Anee Mes

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

Related Questions