yopify/yo-php-sdk
Composer 安装命令:
composer require yopify/yo-php-sdk
包简介
Yo PHP SDK is the official SDK wrapper for the Yopify Yo API service
README 文档
README
Yo PHP SDK is the official SDK wrapper for the Yo API service
Requirements
- PHP Version 5.3.0+
Installation
Install the latest version with
$ composer require yopify/yo-php-sdk
Manual User Installation
Download src/Yo/Client.php and include the file in your PHP project.
Check out our examples in example/example.php, quick usage examples:
Basic Usage
Initialize Yo client via:
<?php use Yopify\Yo\Client; $yoClient = new Client(); $yoClient->authToken = 'YOUR-TOKEN-HERE'; // auth token can be found here: https://yopify.com/api/yo/settings#/api // OR $yoClient->setBasicAuth('me@mysite.com', 'secret'); // You can use basic auth also
#####To check authentication:
$isAuthenticated = $yoClient->ping(); // false if not authenticated, current timestamp if success
#####Get a single Event
$event = $yoClient->getEvent(EVENT_ID);
#####Get list of events
$events = $client->getEvents(PER_PAGE, PAGE_NO); // Check for success if (isset($events->meta)) { echo 'Current page: ', $events->meta->pagination->current_page, "\n"; echo 'Total pages: ', $events->meta->pagination->total_pages, "\n"; echo 'Page page: ', $events->meta->pagination->per_page, "\n"; echo 'Total count: ', $events->meta->pagination->total, "\n"; }
#####Create new event
$event = new Yopify\Yo\YoEvent(); $event->event_type_id = '1'; $event->unique_id1 = '10'; $event->unique_id2 = '1'; $event->title = 'This awesome product'; $event->first_name = 'Jon'; $event->last_name = 'snow'; $event->city = 'New York'; $event->province = 'XXXX'; $event->country = 'USA'; $event->url = 'https://example.com'; $event->message_template = '[FIRST-NAME] from [COUNTRY] just purchased [TITLE-WITH-LINK]'; $yoEvent = $yoClient->createEvent($event);
#####Update an event
$yoEvent = $yoClient->getEvent(EVENT_ID); if (isset($yoEvent->data)) { $yoEvent = $yoEvent->data; $yoEvent->province = "AAAA"; $updatedEvent = $yoClient->updateEvent($yoEvent); }
#####Delete an event:
$deletedEvent = $yoClient->deleteEvent(EVENT_ID);
Support
If you have questions, email us at yo@yopify.com.
统计信息
- 总下载量: 26
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2016-10-12