Isaach, many thanks for quick response. I’m trying to use a python script that gets the Tweets and does a bit of sorting etc. The part of the code relating to the Twitter url is:
def oauth_get_tweet(tid, http_method="GET", post_body='',
http_headers=None):
url = 'http://api.twitter.com/1.1/statuses/show.json?id=' + tid
consumer = oauth.Consumer(key=CONSUMER_KEY, secret=CONSUMER_SECRET)
token = oauth.Token(key=ACCESS_KEY, secret=ACCESS_SECRET)
client = oauth.Client(consumer, token)
resp, content = client.request(
url,
method=http_method,
body=post_body,
headers=http_headers
)
Does this make sense?
Appreciating your assistance.