• Stars
    star
    153
  • Rank 242,472 (Top 5 %)
  • Language
    PHP
  • License
    MIT License
  • Created almost 14 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

PHP Client for the Podio API.

Podio PHP client library

This is the non-official PHP Client for interacting with the Podio API maintained by the Podio community and the continuation of the former official Podio PHP Client. Most parts of the Podio API are covered in this client. See podio-community.github.io/podio-php for documentation.

Build Status Coverage Status Packagist Version

Usage

Install via composer:

composer require podio-community/podio-php

Use in your PHP files:

require __DIR__ . '/vendor/autoload.php';

$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";

Contribute

To contribute, please read: the contribution guide.