PHP code example of robertogallea / restado

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

    

robertogallea / restado example snippets


    Robertogallea\Restado\RestadoServiceProvider::class,
    

    'Restado' => Robertogallea\Restado\Facades\Restado::class,    
    

    TADO_CLIENT_ID=<TADO_APP_ID>       // defaults to public-api-preview
    TADO_SECRET=<TADO_APP_SECRET_KEY>  // defaults to 4HJGRffVR8xb3XdEUQpjgZ1VplJi6Xgw                                                      
    TADO_USER=<TADO_USER>
    TADO_PASS=<TADO_PASSWORD>
    TADO_HOME_ID=<TADO_HOME_ID>
    

    composer update robertogallea/restado
    

php artisan vendor:publish --provider="Robertogallea\Restado\RestadoServiceProvider" --tag=config

    $access_token = Restado::authorize();
    

    $me = Restado::me($access_token);