PHP code example of kanta-inc / inpi-rne-php

1. Go to this page and download the library: Download kanta-inc/inpi-rne-php 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/ */

    

kanta-inc / inpi-rne-php example snippets


use RNEClient\RNEClient;

$client = new RNEClient('token');
$data = $client->searchBySiren('889924320');

// OR

$client = new RNEClient();
$client->authenticate('votre_username', 'votre_password');
$data = $client->searchBySiren('889924320');