Viewing 6 replies - 1 through 6 (of 6 total)
  • Tnx 🙂

    FYI: I also had to paste that link + acountid into the Custom RSS field in the widget.

    Tried replacing that line, doesn’t work for me.

    Thread Starter crdunst

    (@crdunst)

    An example where I have done this is still working, so perhaps look at some of the other solutions on here – is the twitter account unlocked?

    It may also be worth trying changing http to https in that url – I remember from another plugin that this can help, or it’s specific to different twitter accounts or something.

    I’ve given up with plugins and twitter tbh, I’ve not found one yet that is reliable and doesn’t break after a short time. I’ve used this recently http://tweet.seaofclouds.com/ – it’s just as easy to add it in your templates manually than installing/tweaking different plugins.

    Good luck 🙂

    Aha, I changed the user name to user ID and now it seems ok.

    Thanks for the reply, and the tip about seaofclouds, that looks cool, totally agree about twitter plugins.

    Cheers!

    None of those solutions worked for me, but knowing that the feed works using user names instead of the ID, I used this instead:
    (“http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=” + accountid)

    Then I replaced the user ID with the user name instead.

    Thread Starter crdunst

    (@crdunst)

    Hi theresavs, thanks for the info. I always found RSS easy to work with too, but twitter are dropping support for RSS in favour of json.

    A little snippet such as the following would get the latest twitter post using their json format:

    <?php
    $twinfo = json_decode(file_get_contents('http://api.twitter.com/1/users/lookup.json?screen_name=accountnamehere'));
    ?>
    <p><?php echo $twinfo[0]->status->text; ?></p>

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: Reliable Twitter] Stopped working? Here's a fix…’ is closed to new replies.