Hi,
I can’t figure out what the new request is to get my most recent tweet on my website. Here is what I used to have which worked in the past but now does now get any recent tweet. Any help is appreciated.
{% set twitter_username as 'milkmade' %}
{% retrieve timeline from 'http://twitter.com/status/user_timeline/'~twitter_username~'.json' as json cache 15 %}
{{ timeline[0].text|autolink }}
episod
#2
With API v1.1 you need to use server-side OAuth to retrieve tweets such as this from the API – you won’t be able to use client-side programming to achieve this.