我正在调试使用服务器密钥发布到 CloudKit 的 C# 应用程序的 JSON。
根据文档,我需要用来创建/修改记录的 JSON 如下所示:
{
"operationType" : "create",
"record" : {
"recordType" : "Artist",
"fields" : {
"firstName" : {"value" : "Mei"},
"lastName" : {"value" : "Chen"}
}
"recordName" : "Mei Chen"
},
}
当我转到JSON2Csharp时,我收到以下错误。我需要确定文档是否无效,或者服务器是否真的想要这个 JSON。
问题
苹果CloudKit框架中使用的JSON发送到CK服务器时如何获取?