Private data sharing using CloudKit

三世轮回 提交于 2020-01-11 18:54:13

问题


Is there a straightforward way to share private data between two or more users using CloudKit?

Public and private date are obvious, but there doesn't seem to be a way to allow a group of users to organize their own silo to share data amongst themselves without making it available to all the other users of the system and to the app developer.

I have an academic collaboration app in mind but the simplest example would be private messaging between two users.

I guess one could try to build a public key encryption system on top of CloudKit to achieve that, but that's not what I'm looking for and would scale poorly beyond two users per group.


回答1:


At WWDC 2016, Apple introduced CKShare which addresses this use case. As of Jun 13th, 2016, the beta API is public but undocumented. The sharing API is demonstrated in the WWDC 2016 video What's new with CloudKit, starting at 19:57.




回答2:


Short answer: YES!

CloudKit Sharing was introduced at WWDC 2016. There is a great overview in the "What's new in CloudKit" session: https://developer.apple.com/videos/play/wwdc2016/226/




回答3:


Technically yes, you can share private data between two our more users with CloudKit. While the data store is public, this does not mean that each user has access to the entire public store. Your design can control access to portions of the public database within each app instance.

By developing an app that uses the public database with unique identifiers for groups of users, and zones using CKRecordZoneNotification for managing notifications, you should be able to create a reasonably secure solution. You decide what reasonably secure means.

Here's a link to Apple's docs for CKRecordZoneNotification




回答4:


Using the public database and encrypting the shared content would work. Might not be too much fun because then you would need to share encryption keys.



来源:https://stackoverflow.com/questions/26579222/private-data-sharing-using-cloudkit

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!