When I send notification to Device Groups
I get the following response
{
"success": 2,
"failure": 0
}
I wanted to simulate partial success (https://developers.google.com/cloud-messaging/notifications#http_response) so that I can test my retry logic. A response like below-
{
"success":1,
"failure":2,
"failed_registration_ids":[
"regId1",
"regId2"
]
}
How should I do that?