Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.03 KB

README.markdown

File metadata and controls

30 lines (23 loc) · 1.03 KB

PlurkOAuth

PHP Wrapper of Plurk OAuth API

About

PlurkOAuth is a php wrapper for Plurk API 2.0 beta You will need to Sign Up for your own CUSTOMER TOKENs.

Prerequire Packages

pecl_http, for http_build_url(), http_*.

PHPUniut if you need test it (YOU SHOULD).

Example

% cp config.php.sample config.php # and modify it

require('plurkAPI.php');

$plurk = new PlurkAPI(CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET);
$json = $plurk->callAPI('/APP/Profile/getPublicProfile', array('user_id' => 'clsung'), true);
$json = $plurk->callAPI('/APP/Profile/getOwnProfile');
$json = $plurk->callAPI('/APP/FriendsFans/getFriendsByOffset', array ('user_id' => 'clsung'));
//$json = $plurk->callAPI('/APP/Timeline/getPlurks');
//$json = $plurk->callAPI('/APP/Timeline/plurkAdd', array ('content' => 'Post by plurkoauth which based on oauth-php', 'qualifier' => 'hates'));