PHP code example of podio-community / podio-php

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

    

podio-community / podio-php example snippets




$client = new PodioClient($client_id, $client_secret);
$client->authenticate_with_app($app_id, $app_token);
$items = PodioItem::filter($client, $app_id);

print "My app has " . $items->total . " items";
bash
composer