Parse Server
在iOS
(Parse
版本1.13.0)中销毁了用户会话,用户在第一次成功PFUser
对象保存后变为未经授权。下一次保存(当前用户的任何更新)导致错误,session
Parse server
当前用户消失,PFUser.currentUser()
变为零:
[Error]: cannot modify user 84Yl7S2mNE (Code: 206, Version: 1.13.0)
我已经绝望了。如何解决此错误?
我在Parse server
Heroku
let configuration = ParseClientConfiguration {
$0.applicationId = "*************"
$0.clientKey = "unused"
$0.server = "http://**********.herokuapp.com/parse"
$0.localDatastoreEnabled = false
}
Parse.initializeWithConfiguration(configuration)
尝试禁用LocalDataStore - 无效
答案 0 :(得分:1)
Parse很棒。这是我的错误,我在登录后更改了PFUser.currentUser().password
字段。从不这样做)