Skip to content

podio-community/podio-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1c55389 · Feb 22, 2024
Jul 27, 2023
Feb 14, 2024
Aug 16, 2023
Feb 14, 2024
Sep 4, 2021
Jan 13, 2022
Sep 5, 2021
Feb 22, 2024
Aug 23, 2021
Mar 6, 2012
Aug 7, 2023
Aug 7, 2023
Nov 1, 2023
Aug 19, 2023

Repository files navigation

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.