I tried this script also:
pusher = dofile("/home/apps/store/data/cloud/lua/pusher.lua")
local ids = {}
for _, d in ipairs(pusher.get_android_devices()) do
table.insert(ids, d.id)
end
local status, errors = pusher.push_notification(ids, 'Your house is on FIRE!')
log(status, errors)
Besides trying your third method of FB editor but non of them worked.
No notification sent
pusher = dofile("/home/apps/store/data/cloud/lua/pusher.lua")
local ids = {}
for _, d in ipairs(pusher.get_android_devices()) do
table.insert(ids, d.id)
end
local status, errors = pusher.push_notification(ids, 'Your house is on FIRE!')
log(status, errors)
Besides trying your third method of FB editor but non of them worked.
(10.02.2022, 13:08)Daniel Wrote: Use this as described above
Code:pusher = require('applibs.pusher')
status, errors = pusher.send('custom name or ID', 'Test Message')
log(status, errors)
No notification sent