Questions tagged [icloud-api]

111 questions
5
votes
0 answers

How to do CalDav multiput delete for iCloud?

We have an iCloud calendar PHP integration that uses batch CRUD methods as detailed here: https://github.com/apple/ccs-calendarserver/blob/master/doc/Extensions/calendarserver-bulk-change.txt It appears Apple has updated their servers because since…
Randam
  • 120
  • 7
5
votes
0 answers

access iCloud notes in Swift 3

Is it possible to access notes (from the ios/macOS Apps) which are stored in iCloud from a iOS and/or cocoa App? Any examples or links to a documentation? I couldn't find anything.
mik
  • 147
  • 1
  • 8
5
votes
0 answers

How to get secure token from iCloud calendar login authentication?

I am developing application in which i have to connect multiple iCloud calendar. i don't want to use EventKit. Application like Sunrise , Doing same thing. I have gone through many documentation related to iCloud but not able to find way to get…
5
votes
1 answer

How to extract icloud data through JavaScript / PHP by providing "icloud credential"?

We are looking for any type of SDK / API or references available for extracting the icloud data Like (Messages, Photos and videos, Browser history, Call history, Contacts, Installed apps, Contacts (live), Photos and videos (live), Location (live),…
5
votes
0 answers

Apple iCloud REST Api

I would like to synchronise Apple calendars AND related events into my custom web calendar application. I am able to do it with Outlook and Google. I sync Windows and Google with OAuth offline access, but I haven't found anything related to Apple…
Nicolas
  • 69
  • 3
5
votes
2 answers

Using android device with CloudKit JS without an iCloud account

While watching WWDC 2015 CloudKit JS, I realized that an android device user might need an iCloud to request data from the CloudKit DB since an apple user needs the iCloud account to be turned on. Is my assumption correct? There is no way to have…
shle2821
  • 1,856
  • 1
  • 19
  • 26
5
votes
0 answers

Download iPhone backups from iCloud

Does anyone know of a way to programmatically download iPhone / iPad backups from iCloud?
Jackson Miller
  • 1,500
  • 1
  • 13
  • 23
4
votes
5 answers

Calling -[NSFileManager setUbiquitous:itemAtURL:destinationURL:error:] never returns

I have a straightforward NSDocument-based Mac OS X app in which I am trying to implement iCloud Document storage. I'm building with the 10.7 SDK. I have provisioned my app for iCloud document storage and have included the necessary entitlements…
Todd Ditchendorf
  • 11,217
  • 14
  • 69
  • 123
4
votes
0 answers

NSUbiquitousKeyValueStore API not working on macOS Monterey

My app uses iCloud key-value storage objective-c api as follows: NSUbiquitousKeyValueStore* iCloudStorage = [NSUbiquitousKeyValueStore defaultStore]; [iCloudStorage synchronize]; [iCloudStorage setString:@"Test"…
4
votes
2 answers

What are the alternatives for file upload on ios safari?

I have a mobile web app/site and I would like the users to upload a word document to our site. As safari on the iPhone is not able to upload files what are the alternatives? I have seen http://code.google.com/p/iphone-photo-picker/ however this is…
John
  • 29,788
  • 18
  • 89
  • 130
4
votes
1 answer

iCloud Calendar Requests

I'm trying to access the my iCloud calendars through curl (using this as a test before I write any code), but am getting unauthorised access errors. Has anyone had any luck in getting this to work? I've used this to extract my user ID and have…
clicky
  • 865
  • 2
  • 14
  • 31
4
votes
1 answer

Get iCloud Contact list in C#

After searching about iCloud API, I found some example on NodeJS and Python, but unfortunately, I'm not familiar with them. I want to know how to get iCloud Contact list on C#. Example on python:…
kairen
  • 235
  • 3
  • 13
4
votes
1 answer

Why ubiquityIdentityToken returns nil?

NSFileManager.defaultManager().ubiquityIdentityToken on some device in some case returns nil, even I set up iCloud Documents in Capabilities and I am logged in to iCloud on device. How reliable operation of the ubiquityIdentityToken do you met? Am I…
János
  • 32,867
  • 38
  • 193
  • 353
4
votes
2 answers

CKDiscoverAllContactsOperation not fetching contacts

I am using CKDiscoverAllContactsOperation but its not working fine for me. -(void)queryForAllUsers: (void (^)(NSArray *records))completionHandler { CKDiscoverAllContactsOperation *op = [[CKDiscoverAllContactsOperation alloc] init]; [op…
3
votes
1 answer

A SIMPLER way to use iCloud with MonoTouch?

I need to add iCloud to my MonoTouch iPhone/iPad app, allowing the User to store the app data in the cloud. Unfortunately it seems that iCloud is way too complicated for something that, from my point of view, should be essentially reduced to three…
Emanuele Sabetta
  • 1,571
  • 12
  • 34