PHP code example of dehbka / wigle-client

1. Go to this page and download the library: Download dehbka/wigle-client 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/ */

    

dehbka / wigle-client example snippets


use Dehbka\WigleClient\Contracts\Resources\Network\Enum\Encryption;
use Dehbka\WigleClient\Contracts\Resources\Network\Search\SearchRequest;
use Dehbka\WigleClient\Wigle;

$client = Wigle::client($key);

$response = $client->network()->search(
    new SearchRequest(
        onlyMine: true,
        encryption: Encryption::none
    )
);

var_dump($response);