Hi,
As @Mark requested, I create new Topic here, thank you for your support.
I got this issue when I login with google+ (login with email and password is ok).
User has a relation with Organisation and I use autoload to load Organisation along to user when login. But when i save Activity and set activity.user = Backendless.sharedInstance().userService.currentUser .
The error happens: Wrong property name: __subID . This name is forbidden, please, choose another one.
I debug and note that when I login with google+, the NSLog shows:
<BackendlessUser [<BackendlessUser: 0x61800000af60>]> {
"___class" = Users;
.........
organisation = {
"___class" = Organisation;
"__subID" = "787EC6DB-2971-4218-FF34-1636131EEA00";
address = "xxx";
created = "Thu Jun 30 10:11:30 UTC 2016";
members = (
);
name = "xxx";
objectId = "2AAC0C5B-84DB-EFE7-FF08-017BA2CCB100";
ownerId = "<null>";
"phone_number" = 0;
serialVersionUID = 0;
updated = "Fri Oct 14 07:21:02 UTC 2016";
};
........
}
End when i login with email:
<BackendlessUser [<BackendlessUser: 0x60800000ab60>]> {
......
organisation = "<Organisation: 0x60800005ba80>";
.......
}
Please help me, Thank you.