There is a method https://dev.twitter.com/rest/public/search I want to find a video. How to do it? (What request)

    1 answer 1

    $api = 'https://api.twitter.com/1.1/search/tweets.json'; $query = 'видео курсы'; $url = $api . '?q=' . rawurlencode($query . ' filter:native_video');