iOSを使用しています。
whereKey:@"" に @"objectId" を挿入すると、. 次のエラーが表示されます: 特別なキーが正しくありません: objectId.
これは私のコードです:
PFQuery *findFriends = [PFUser query];
[findFriends whereKey:@"objectId" equalTo:friendsID];
[findFriends selectKeys:@[@"firstname",@"lastname"]];
[findFriends findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
if (!error) {
NSLog(@"%@", objects);
}
}];
friendsID は、現在のユーザーがフォローしているユーザーの objectId を持つ NSString です。
ありがとうございました!