Hi
I’m trying to map my Twitter user’s profile image URL to my user object in Backendless. All the fields map like they should except for the profile_image_url which never returns a result. I am on the latest iOS SDK 3.0.17.
The call I’m doing is the following:
[backendless.userService easyLoginWithTwitterFieldsMapping:@{@"id":@"username",
@"email": @"email",
@"name" : @"name",
@"profileImageThumbUrl" : @"profile_image_url",
@"profileImageUrl" : @"profile_image_url"}
response:^(id response) {
NSLog(@"%@", response);
}
error:^(Fault *fault) {
NSLog(@"%@", fault.detail);
}];