Reputation: 140
I'm using Malcom API to send push notifications to my users.
I'm using + (void)identifyUserWithName:(NSString *) name mail:(NSString *) mail;
in my iOS client but I need to know how to send push notifications to specific users using his name or email.
I haven't found anything in the documentation.
Thanks.
Upvotes: 0
Views: 79
Reputation: 380
Unfortunately Malcom only saves that information so far. There's no way to send push notifications given an email.
Anyway you could send pushes straight to an unique device thanks to Malcom Identifier. Look into Malcom API documentation to see UDIDS
field in the body of a push request.
Upvotes: 2