A few days ago the options like “hide_media”, “hide_tweet” etc are not responding to the true or false statement.
For instance I have this…
$reg_video = $post_data->id;
$videosDecode = $reg_video;
$fetchedTweets2 = $connection->get(
'statuses/oembed',
array(
'id' => $videosDecode,
'widget_type' => 'video',
'hide_tweet' => true,
'hide_thread' => true,
'hide_media' => false,
'omit_script' => false,
)
);
A few days ago it would simply return the video for the ID of the tweet that was made. Now no matter what I set it will return all the options. Is anyone else experiencing this problem?