Parse.Cloud.define("email", function(request, response) { var param1 = request.params.param1; var param2 = request.params.param2; response.success("success");
Work with the text below
NSDictionary *param = [[NSDictionary alloc] initWithObjectsAndKeys:@"A",@"param1",@"B",@"param2", nil]; [PFCloud callFunctionInBackground:@"email" withParameters:param block:^(id object, NSError *error) { }];
Muhammad Awais
source share