The easy way to fix is to simply add:
Code: Select all
conn.close()Code: Select all
/Library/Application Support/Perceptive Automation/Indigo 6/Plugins/pushover.indigoPlugin/Contents/Server Plugin/plugin.pyCode: Select all
conn.close()Code: Select all
/Library/Application Support/Perceptive Automation/Indigo 6/Plugins/pushover.indigoPlugin/Contents/Server Plugin/plugin.pyI use the title as a classification of sorts, and the message as my data. For instance, if the message has to do with my pool, title will be "Pool", and message will be something like "Solar Heat Off due to warm water." Or whatever. I find it useful to categorize the messages this way.LeeButler wrote:Well, this is a little embarrassing.. More experimentation fixed my problem. The message body is a required field. As log as I have something in the message field (vs title) the messages arrive.
Code: Select all
cd /Library/Application\ Support/Perceptive\ Automation/Indigo\ 6/Databases/
grep -B6 -A50 "your erroneous string here" <your database>.indiDbFrom https://pushover.net/api:whmoorejr wrote:If you want to send a push to 3 of your 10 devices, what is the format? I've tried all kinds of combinations... Space, comma, slash etc between device names. In my experiments, either just the first device in my list gets the push or all devices in my push universe.... But not just the 3 devices.
The plugin doesn't do anything with the text you enter except strip() it, meaning removing leading or trailing whitespace. So if you enter your devices separated by a comma and no spaces, you should get the desired outcome.device - your user's device name to send the message directly to that device, rather than all of the user's devices (multiple devices may be separated by a comma)
Code: Select all
iphone,tablet,desktopIt's not a "text" message (MMS or SMS). It's a push notification. (Each one will be on a separate line in the pushover app on your phone.philipbasile wrote:discgolfer,
quick question before I move to pushover.
If I send text messages from indigo to my iPhone with the plugin will they all land in a single thread on my iPhone or will they each be their own thread.
Thanks
Philip