示例#1
0
文件: basic.php 项目: picatic/php-api
<?php

// Include PicaticAPI, which includes everything else you need
include '../vendor/autoload.php';
include '../src/PicaticAPI.php';
include 'config.php';
// Fetch the default instance, get the model factory, get the Event model and find the event 34641
$event = PicaticAPI::instance()->factory()->modelCreate('Event')->find(34641);
// print out the response
print_r($event->getValues());
示例#2
0
<?php

// Include PicaticAPI, which includes everything else you need
include '../vendor/autoload.php';
include '../src/PicaticAPI.php';
include 'config.php';
// Get you
$user = PicaticAPI::instance()->factory()->modelCreate('User')->find('me');
// Show your user profile values
print_r($user->getValues());
// Fetch the default instance, get the model factory, get the Event model and find the event 34641
$events = PicaticAPI::instance()->factory()->modelCreate('Event')->findAll(array('user_id' => $user['id'], 'fields' => 'id,title'));
// print out the response
foreach ($events as $event) {
    print_r($event->getValues());
}
示例#3
0
<?php

// set your API key here
PicaticAPI::instance()->setApiKey('...');