<!DOCTYPE html>
<html>
<body>

<?php
// The URL you want to fetch data from
$url = "https://w...content-available-to-author-only...e.com/oembed?url=https://w...content-available-to-author-only...e.com/watch?v=jh2LJVDtGIY&format=json";

// Initialize cURL session
$ch = curl_init();

// Set cURL options
curl_setopt($ch, CURLOPT_URL, $url);         // Set the URL
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Return the response as a string
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); // Follow any redirects

// Execute cURL and get the response
$response = curl_exec($ch);

// Check for errors
if(curl_errno($ch)) {
    echo 'cURL error: ' . curl_error($ch);
} else {
    // Print the response
    echo $response;
}

// Close the cURL session
curl_close($ch);
?>


</body>
</html>
