(SOLVED) Pushover broken?

Hi Guys,

is Pushover Service broken ? Or why do i get 20 Messages and then silence for a random time and then i get another few messages and then the same again…

and how do i specify the person who should receive the message in the new syntax ?

my Pushover Test-Rule:

rule "PUSHOVER TestRule"
    when 
        Time cron "0/10 0 0 ? * * *"  // every 10th sec.
    then 
        var text = "Pushover TEST"
        sendPushoverMessage(pushoverBuilder(text).withSound("gamelan"))  
        logInfo("PUSHOVER","******PUSHOVER*******: " + text )
end

Thanks

Working fine here.

.withDevice("YourDeviceName")
(Of course you have to add that device to pushover first)

thanks, hmmm. what is wrong with my rule then ?

Try adding the credentials and keys to your rule.

but its sometimes working without them ? i’ll try later :frowning:

EDIT:
Changed the Rule to this and now it works. Thanks

//// TEST RULE

rule "PUSHOVER TestRule"
    when 
        Time cron "0 0/1 * * * ?"  // Every Minute
    then 
        var text = "PUSHOVER Test"
        sendPushoverMessage(pushoverBuilder(text).withDevice("RiotMode").withSound("pushover"))  
end