PHP code example of nsmle / ouo-bypass

1. Go to this page and download the library: Download nsmle/ouo-bypass library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nsmle / ouo-bypass example snippets




use Nsmle\OuoBypass\Api;

$ouo = new Api();
$ouo->setOriginUrl("https://ouo.press/ZGawzS");
$ouo->bypass();
$link = $ouo->getDestinationUrl();

echo $link;

$ouo = new Api("https://ouo.press/ZGawzS");
$ouo->bypass();
$link = $ouo->getDestinationUrl();

$ouo = new Api("https://ouo.press/ZGawzS");
$link = $ouo->bypass()['destination-url'];