Dear Twitter,
On British Design British Made website latest twitter image posts is not appearing on my website https://www.britishdesignbritishmade.com. Latest post that appears on the site is September 9th.
We have posted a tweet 12 minutes ago so it should appear on-site.
Here is the code that we have been using.
<?php
$storedimage = array();
require_once('twitterexchange.php');
$settings = array(
'oauth_access_token' => "353237xxxxxxxxxxxxxxxxxxctiUZ",
'oauth_access_token_secret' => "KRxxxxxxxxxxxxxxxxxxmGoxIIi",
'consumer_key' => "kGxxxxxxxxxxxxxxxxxxiq",
'consumer_secret' => "gt0xxxxxxxxxxxxxxxxxx7qoWSxk"
);
$url = "https://api.twitter.com/1.1/statuses/user_timeline.json";
$getfield = '?screen_name=loveBritishmade';
$requestMethod = "GET";
$twitter = new TwitterAPIExchange($settings);
$user_timeline = $twitter
->setGetfield($getfield)
->buildOauth($url, $requestMethod)
->performRequest();
$user_timeline = json_decode($user_timeline);
?>