As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
I have configured push in my app. using the console I can send a test-message to all users. Now I want to send the push from a custom endpoint - but the push is not delivered.
I wanted to start with a very basic example:
function onRequest(request, response, modules){
var push = modules.push;
push.broadcastMessage("Hello");
response.complete(200);
}
What did I do wrong? I also tried iteration over the collection of all users and successfully logged their usernames, but no pushes are delivered from my custom endpoint.
Same here. Odd thing is that my business logic push was working fine and this week it stopped sending the push. If I use the push console it still works fine.
C
Caroline
said
almost 10 years ago
Hi Daniel and Rafael,
I wanted to let you know we're working on this, I'll update you asap.
M
Michael
said
almost 10 years ago
This has been resolved and should work now. I apologize for the inconvenience.
D
Daniel Wolf
said
almost 10 years ago
Thank you very much - now it's working like a charm. :-)
Daniel Wolf
I have configured push in my app. using the console I can send a test-message to all users. Now I want to send the push from a custom endpoint - but the push is not delivered.
I wanted to start with a very basic example:
function onRequest(request, response, modules){
var push = modules.push;
push.broadcastMessage("Hello");
response.complete(200);
}
What did I do wrong? I also tried iteration over the collection of all users and successfully logged their usernames, but no pushes are delivered from my custom endpoint.