Page 1 of 1

My station's tweets to Twitter have stopped completely

Posted: Fri 06 Sep 2019 8:42 pm
by hungerdunger
I realise that there has been a problem with sending tweets from within the Cumulus program for some time (due I believe to some changes enforced by Twitter), but nevertheless it still managed to send a few each day.

However, I have just looked back and can see that no tweets have been sent since 29th July. Is anyone here still using the Twitter option in Cumulus? If so, what's the situation with you ? Do you know why no tweets are being sent and is the situation likely to be permanent?

Re: My station's tweets to Twitter have stopped completely

Posted: Fri 06 Sep 2019 9:04 pm
by freddie
I looked into this a couple of weeks ago, and the only change on the Twitter side is that they require tweets to be submitted using TLS version 1.2 and above from that date. I don't know whether or not Cumulus uses TLS 1.2 - I am assuming not - but as I know the Cumulus Twitter functionality is basically broken (in that it doesn't use a per-user API key, so will be severely rate-limited) I didn't look any further into it.

Re: My station's tweets to Twitter have stopped completely

Posted: Sat 07 Sep 2019 1:50 am
by PaulMy
Just noticed that my Cumulus Tweets are also not being sent, but every-hour tweet through Weathercloud is working http://www.twitter.com/KomokaWeather

Enjoy,
Paul

Re: My station's tweets to Twitter have stopped completely

Posted: Sun 08 Sep 2019 3:59 pm
by mcrossley
I'd use a third party app for sending tweets from Cumulus (like twurl maybe), twitter is broken and cannot be fixed in Cumulus 1.

It's broken in MX too, but may be fixed there at some point.

Re: My station's tweets to Twitter have stopped completely

Posted: Mon 09 Sep 2019 8:49 pm
by THX
It's broken in Cumulus 1.9.4 (Build 1099) as well...

After 136,600 Tweets, it was a good ride...

Re: My station's tweets to Twitter have stopped completely

Posted: Mon 09 Sep 2019 9:12 pm
by water01
THX wrote: Mon 09 Sep 2019 8:49 pm It's broken in Cumulus 1.9.4 (Build 1099) as well...

After 136,600 Tweets, it was a good ride...
That is what Mark said "twitter is broken and cannot be fixed in Cumulus 1."!!

Re: My station's tweets to Twitter have stopped completely

Posted: Mon 11 Nov 2019 4:49 am
by johnwh46
Given that Cumulus posts to Twitter are a problem, can we extract a string of the format specified by twitter.txt for our own use - email, send ourselves to twitter etc? Running CumulusMX on a headless Raspberry Pi at a remote location with internet access. Yes I can email myself realtimeguages.txt from the RPi but not exactly what I want. Run a cron job to jump in, extract the string and do what we want to with it?

Re: My station's tweets to Twitter have stopped completely

Posted: Mon 11 Nov 2019 5:21 pm
by ExperiMentor
You can certainly achieve this in CumulusMX (why not switch over to the maintained program??). I've not used Cumulus 1 for years but expect it can do the same.

All you need to do is tell Cumulus to 'Process' the twitter.txt template file (or indeed any other file you want), then pick up the output (processed) file in which all the webtags have been converted.

In CumulusMX this is done via the web interface, Settings tab, Extra Web Files item. Set as follows:
Local filename: twitter.txt
Remote filename: tweet.txt ... or whatever you want. If you don't specify otherwise, it will appear in the same directory as twitter.txt.
Tick the boxes for 'Process' and 'Realtime' and the output file will be kept up to date every few seconds, always ready for you to tweet, email or use as a ticker on your webpage.

The following in twitter.txt is about as much as can be squeezed into the characters available:

Code: Select all

<#shortdayname> <#hour><#minute>: <#forecast>. <#temp>C (app: <#apptemp>C). Wind <#wdir> <#wspeed><#windunit>. Rain <#rfall><#rainunit>. Humidity <#hum>%. <#press><#pressunit> <#presstrend>
I have attached my Python script that tweets this (every 15 min by cron job) together with a picture snagged from my weather webcam.
TweetFromPi.py .txt
And the resulting Tweets appear at: https://twitter.com/LiesbergDorf

Good luck!