Plurk API 2.0
Plurk API 2.0 introduces OAuth 1.0a to protect user's privacy. It provides a standard way of accessing and implementing applications on top of the Plurk platform. With OAuth, application can access user's timeline and post plurks on behalf of user without keeping user's password. All applications wishing to access user's data are encouraged to migrate to Plurk API 2.0 (OAuth) as soon as possible.
Sign up to create your own Plurk App now! Manage your created Plurk Apps here.
The differences between Plurk API 2.0 and our original session-based API 1.0:
Plurk API 2.0 is stateless (no login is required), while the original API is session-based. Plurk API 2.0 URL prefixes with https://www.plurk.com/APP/ instead of original https://www.plurk.com/API/ Plurk API 2.0 requests should be signed using OAuth Core 1.0a standard Input/output parameters are identical to original API except that Plurk API 2.0 do not need an api_key Plurk API 2.0 applications must obtain user's access token using OAuth before invoking the API. Most APIs use three-legged OAuth which require the request to be signed using consumer key/secret and access token key/secret. A few APIs also support two-legged OAuth which the request can be signed simply using consumer key/secret.
If you're bot developer and/or do not intend to provide service to other users, you can obtain your own permanent token (access token) simply using our test console. You don't need to write code stuff to obtain request and access tokens yourself.
The API returns JSON encoded data. You should use a JSON library to decode the data returned.
Useful resources
Tools
- Plurk OAuth test console
- Developer can examine the Apps he created at: https://www.plurk.com/PlurkApp/
- User can review the Apps he installed at: https://www.plurk.com/APP/
- For news and updates follow @plurkapi
- bug report: api@plurk.com
Plurk API 2.0 libraries
Language | Library | Author |
---|---|---|
Python | plurk-oauth | clsung |
PHP | plurkoauth | clsung |
Perl | Net::Plurk | clsung |
Java | JPlurk-OAuth | qrtt1 |
Ruby | PlurkOAuth | rascov |
Lua | LuaPlurk | ykhuang |
JavaScript | plurkjs | clsung |
C# | rsPlurkLib | rschiang |
Go | plurgo | clsung |
OAuth libraries
- Python: python-oauth2
- PHP: oauth-php
- Perl: Net::OAuth
- Lua: LuaOAuth
- More OAuth libraries: http://oauth.net/code/
OAuth flow and endpoints
Typically, applications must proceed the following steps to obtain user's access token.
- Sign up here to get plurk app key/secret (OAuth consumer key/secret)
- request a temporary token (OAuth request token)
- redirecting user to Plurk for authorizing the access permission
- receiving the OAuth verifier on the callback
- request a permanent user token (OAuth access token)
After obtaining user's access token, application can then sign the request to invoke any Plurk API 2.0 functions
Plurk OAuth service endpoints
- obtain request token: https://www.plurk.com/OAuth/request_token (
HTTPS GET/POST
) - authorization page: https://www.plurk.com/OAuth/authorize
- authorization page for mobile: https://www.plurk.com/m/authorize
- obtain access token: https://www.plurk.com/OAuth/access_token (
HTTPS GET/POST
)
Multiple-devices support
You can also pass an optional argument "deviceid" to the authorization page which enable your app be installed on multiple devices using the same Plurk account. The previous access token using the same "deviceid" will be overwritten. Another optional argument "model" can be passed as well, for a meaningful model name to identify user's device. ex:
https://www.plurk.com/OAuth/authorize?oauth_token=ReqKMrVIjOLI&deviceid=efa9183a839f421821dc5c&model=Apple+iPhone+4S
The maximum length of deviceid is 32 chars and the default value is empty (""). You
should use an unique id such as UUID to identify user's device, for example:
ab21862c272bbd703ef9d5b35458b78d
. The model or deviceid will be
shown in user's My Authorized Plurk Apps page. Using a meaningful
model name helps user identifying his access tokens easily.
Plurk OAuth specification
- Signature method: HMAC-SHA1 (?)
- OAuth parameters should be passed in: HTTP Authorization header (?)
- [Timestamp + Nonce] pair should be unique for each request, and timestamp should be very close to current time (?)
- After requesting a request (temporary) token, user must authorize the request in 30 minutes, and Plurk App must obtain the access (permanent) token in 60 minutes
- Plurk API 2.0 paramenters can be passed in: GET (similar to API 1.0) or POST (recommended)
Plurk OAuth data flow
Python example
Sample codes of using Plurk API 2.0 from Python.
import oauth2 as oauth
import urlparse
OAUTH_REQUEST_TOKEN = 'https://www.plurk.com/OAuth/request_token'
OAUTH_ACCESS_TOKEN = 'https://www.plurk.com/OAuth/access_token'
def get_request_token(app_key, app_secret):
consumer = oauth.Consumer(app_key, app_secret)
client = oauth.Client(consumer)
response = client.request(OAUTH_REQUEST_TOKEN, method='GET')
return urlparse.parse_qs(response)
def get_access_token(app_key, app_secret, oauth_token, oauth_token_secret, oauth_verifier):
consumer = oauth.Consumer(app_key, app_secret)
token = oauth.Token(oauth_token, oauth_token_secret)
token.set_verifier(oauth_verifier)
client = oauth.Client(consumer, token)
response = client.request(OAUTH_ACCESS_TOKEN, method='GET')
return urlparse.parse_qs(response)
def getOwnProfile(app_key, app_secret, oauth_token, oauth_token_secret):
apiUrl = 'https://www.plurk.com/APP/Profile/getOwnProfile'
consumer = oauth.Consumer(app_key, app_secret)
token = oauth.Token(oauth_token, oauth_token_secret)
client = oauth.Client(consumer, token)
response = client.request(apiUrl, method='GET')
return response
Plurk data
A plurk and it's data
A plurk is encoded as a JSON object
A plurk is encoded as a JSON object. The dates used will be UTC and you are expected to post UTC to the Plurk server as well. You should render the time in user's local time. Typically it will be returned as following:
{
"responses_seen": 0,
"qualifier": "thinks",
"plurk_id": 90812,
"response_count": 0,
"limited_to": null,
"no_comments": 0,
"is_unread": 1,
"lang": "en",
"content_raw": "test me out",
"user_id": 1,
"plurk_type": 0,
"content": "test me out",
"qualifier_translated": "thinks",
"posted": "Fri, 05 Jun 2009 23:07:13 GMT",
"owner_id": 1,
"favorite": false,
"favorite_count": 1,
"favorers": [
3196376
],
"replurkable": true,
"replurked": true,
"replurker_id": null,
"replurkers": [
1
],
"replurkers_count": 1
}
If &minimal_data=1 is sent as an argument to the request
If &minimal_data=1 is sent as an argument to the request, then some of this data will be removed (this is recommended if you want to optimize bandwidth usage). content_raw and any null attribute will be removed. The above example will look like:
{
"qualifier": "thinks",
"plurk_id": 90812,
"no_comments": 0,
"is_unread": 1,
"lang": "en",
"user_id": 1,
"plurk_type": 0,
"content": "test me out",
"posted": "Fri, 05 Jun 2009 23:07:13 GMT",
"owner_id": 1
}
Plurk attributes:
Parameter | Description |
---|---|
plurk_id | The unique Plurk id, used for identification of the plurk. |
qualifier | The English qualifier, can be "says", show all: Show example data |
qualifier_translated | Only set if the language is not English, will be the translated qualifier. Can be "siger" if plurk.lang is "da" (Danish). |
is_unread | Specifies if the plurk is read, unread or muted. Show example data |
plurk_type | Specifies what type of plurk it is and if the plurk has been responded by the user. The value of plurk_type is only correct when calling getPlurks with "responded" filter (this is done for perfomance and caching reasons). |
user_id | Which timeline does this Plurk belong to. |
owner_id | Who is the owner/poster of this plurk. For anonymous plurk, this will be overrided by user "anonymous" (uid: 99999). |
posted | The date this plurk was posted. |
no_comments | If set to 1, then responses are disabled for this plurk. If set to 2, then only friends can respond to this plurk. |
content | The formatted content, emoticons and images will be turned into IMG tags etc. |
content_raw | The raw content as user entered it, useful when editing plurks or if you want to format the content differently. |
response_count | How many responses does the plurk have. |
responses_seen | How many of the responses have the user read. This is automatically updated when fetching responses or marking a plurk as read. |
limited_to | If the Plurk is public limited_to is null . If the Plurk is posted to a user's friends
then limited_to is [0] . If limited_to is [1,2,6,3] then it's posted only to
these user ids. |
favorite | True if current user has liked given plurk. |
favorite_count | Number of users who liked given plurk. |
favorers | List of ids of users who liked given plurk (can be truncated). |
replurkable | True if plurk can be replurked. |
replurked | True if plurk has been replurked by current user. |
replurker_id | ID of a user who has replurked given plurk to current user's timeline. |
replurkers_count | Number of users who replurked given plurk. |
replurkers | List of ids of users who replurked given plurk (can be truncated). |
qualifier | The English qualifier, can be "says", show all: Show example data
loves
likes
shares
gives
hates
wants
has
will
asks
wishes
was
feels
thinks
says
is
:
freestyle
hopes
needs
wonders
is_unread | Specifies if the plurk is read, unread or muted. Show example data
is_unread=0 //Read
is_unread=1 //Unread
is_unread=2 //Muted
User data
A user and the data
Depending on what kind of request it is the data returned varies. For responses and plurks, the data returned is minimal and will look like this:
Depending on what kind of request it is the data returned varies
{
"display_name": "amix3",
"gender": 0,
"nick_name": "amix",
"has_profile_image": 1,
"id": 1,
"avatar": null
}
This can be used to render minimal info about a user.
For other type of requests, such as viewing a friend list or a profile, the data returned will be larger:
For other type of requests
{
"display_name": "Alexey",
"gender": 1,
"nick_name": "Scoundrel",
"has_profile_image": 1,
"id": 5,
"avatar": 3,
"is_channel": 0,
"location": "Canada",
"date_of_birth": "Sat, 19 Mar 1983 00:00:00 GMT",
"relationship": "not_saying",
"full_name": "Alexey Kovyrin",
"recruited": 6,
"karma": 33.5
}
User attributes
Parameter | Description |
---|---|
id | The unique user id. |
nick_name | The unique nick_name of the user, for example amix . |
display_name | The non-unique display name of the user, for example Amir S . Only set if it's non
empty. |
premium | Boolean on whether the user currently has plurk coins. |
has_profile_image | If 1 then the user has a profile picture, otherwise the user should use the default. |
avatar | Specifies what the latest avatar (profile picture) version is. |
location | The user's location, a text string, for example Aarhus Denmark . |
default_lang | The user's profile language. |
date_of_birth | The user's birthday. Note that the birthday is always stored in UTC timezone. You should not convert it to local time zone, otherwise you may get the wrong date of user's birthday. |
bday_privacy | 0: hide birthday, 1: show birth date but not birth year, 2: show all |
full_name | The user's full name, like Amir Salihefendic . |
gender | 1 is male, 0 is female, 2 is not stating/other. |
karma | User's karma value. |
recruited | How many friends has the user recruited. |
relationship | Can be not_saying , single , married , divorced ,
engaged , in_relationship , complicated , widowed ,
unstable_relationship , open_relationship |
About birth date privacy
If user selects to hide his birthday (bday_privacy=0), the returned date_of_birth
will be null. If
user selects to hide his age (bday_privacy=1), the returned date_of_birth
will be altered by
updating the birth year to 1904.
How to render the avatar
One needs to construct the avatar URL. user_id
specifies user's id while avatar
specifies the profile image version.
If has_profile_image == 1 and avatar == null then the avatar is:
https://avatars.plurk.com/{user_id}-small.gif
https://avatars.plurk.com/{user_id}-medium.gif
https://avatars.plurk.com/{user_id}-big.jpg
If has_profile_image == 1 and avatar != null:
https://avatars.plurk.com/{user_id}-small{avatar}.gif
https://avatars.plurk.com/{user_id}-medium{avatar}.gif
https://avatars.plurk.com/{user_id}-big{avatar}.jpg
If has_profile_image == 0:
https://www.plurk.com/static/default_small.gif
https://www.plurk.com/static/default_medium.gif
https://www.plurk.com/static/default_big.gif
Users
/APP/Users/me requires user's access token
(previously /APP/Users/currUser) Returns information about current user, including page-title and user-about.
Required parameters:
none
Successful return:
user data as described above
{
"about": "你好,這裡是乾太。",
"about_renderred": "你好,這裡是乾太。",
"accept_private_plurk_from": "all",
"avatar": 7345374,
"avatar_big": "https://avatars.plurk.com/10879262-big7345374.jpg",
"avatar_medium": "https://avatars.plurk.com/10879262-medium7345374.gif",
"avatar_small": "https://avatars.plurk.com/10879262-small7345374.gif",
"background_id": 54230,
"badges": [
"9",
"1000_views",
"1000_plurks",
"5000_comments",
"upload_profile_image",
"50_fans"
],
"bday_privacy": 2,
"creature_url": "https://s.plurk.com/cb7e5ab8fb53a7617ac6970707edc407.png",
"date_of_birth": "Mon, 20 Mar 1995 00:01:00 GMT",
"dateformat": 0,
"default_lang": "tr_ch",
"display_name": "乾太₍₍ ◝(・◡・)◟ ⁾⁾",
"enable_2fa": 0,
"fans_count": 71,
"friends_count": 36,
"full_name": "huevo235",
"gender": 1,
"has_profile_image": 1,
"id": 10879262,
"join_date": "Fri, 19 Jun 2015 10:46:40 GMT",
"karma": 95.78,
"link_facebook": false,
"location": "Tainan, Taiwan",
"name_color": null,
"nick_name": "huevo235",
"page_title": "來玩「扮演【魔物獵人:世界】」吧!",
"pinned_plurk_id": null,
"plurks_count": 1568,
"post_anonymous_plurk": false,
"premium": false,
"privacy": "world",
"profile_views": 5709,
"recruited": 0,
"relationship": "not_saying",
"response_count": 6364,
"setup_facebook_sync": false,
"setup_twitter_sync": false,
"setup_weibo_sync": false,
"show_ads": true,
"show_location": 0,
"timeline_privacy": 0,
"timezone": "Asia/Taipei",
"verified_account": false
}
/APP/Users/update requires user's access
token
Update a user's information (such as display name, email or privacy).
Required parameters:
none
Optional parameters:
Parameter | Description |
---|---|
full_name | Change full name. |
Change email. | |
display_name | User's display name, can be empty and full unicode. Must be shorter than 15 characters. |
privacy | User's privacy settings. The option can be world (whole world can view the profile) or
only_friends (only friends can view the profile). |
date_of_birth | Should be YYYY-MM-DD , example 1985-05-13 . |
Successful return:
HTTP 200 OK with a JSON object with updated user info {"id": 42, "nick_name":
"frodo_b", ...}
HTTP 200 OK with a JSON object
{
"about": "你好,這裡是乾太。",
"about_renderred": "你好,這裡是乾太。",
"accept_private_plurk_from": "all",
"avatar": 7345374,
"avatar_big": "https://avatars.plurk.com/10879262-big7345374.jpg",
"avatar_medium": "https://avatars.plurk.com/10879262-medium7345374.gif",
"avatar_small": "https://avatars.plurk.com/10879262-small7345374.gif",
"background_id": 54230,
"badges": [
"9",
"1000_views",
"1000_plurks",
"5000_comments",
"upload_profile_image",
"50_fans"
],
"bday_privacy": 2,
"creature_url": "https://s.plurk.com/cb7e5ab8fb53a7617ac6970707edc407.png",
"date_of_birth": "Mon, 20 Mar 1995 00:01:00 GMT",
"dateformat": 0,
"default_lang": "tr_ch",
"display_name": "乾太₍₍ ◝(・◡・)◟ ⁾⁾",
"enable_2fa": 0,
"fans_count": 71,
"friends_count": 36,
"full_name": "huevo235",
"gender": 1,
"has_profile_image": 1,
"id": 10879262,
"join_date": "Fri, 19 Jun 2015 10:46:40 GMT",
"karma": 95.78,
"link_facebook": false,
"location": "Tainan, Taiwan",
"name_color": null,
"nick_name": "huevo235",
"page_title": "來玩「扮演【魔物獵人:世界】」吧!",
"pinned_plurk_id": null,
"plurks_count": 1568,
"post_anonymous_plurk": false,
"premium": false,
"privacy": "world",
"profile_views": 5709,
"recruited": 0,
"relationship": "not_saying",
"response_count": 6364,
"setup_facebook_sync": false,
"setup_twitter_sync": false,
"setup_weibo_sync": false,
"show_ads": true,
"show_location": 0,
"timeline_privacy": 0,
"timezone": "Asia/Taipei",
"verified_account": false
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Email invalid"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "Email already found"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "Display name too long, should be less than 15 characters long"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "Internal service error. Please, try later"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Email invalid"
}
HTTP 400 BAD REQUEST
{
"error_text": "Email already found"
}
HTTP 400 BAD REQUEST
{
"error_text": "Display name too long, should be less than 15 characters long"
}
HTTP 400 BAD REQUEST
{
"error_text": "Internal service error. Please, try later"
}
/APP/Users/updateAvatar requires user's
access token
Update a user's profile picture. You can read more about how to render an avatar via user data. You should do a multipart/form-data POST request to
/APP/Users/updateAvatar
. The picture will be scaled down to 3 versions: big, medium and small. The
optimal size of profile_image
should be 195x195 pixels.
Required parameters:
Parameter | Description |
---|---|
profile_image | The new profile image. |
Successful return:
HTTP 200 OK with a JSON object with updated user info {"id": 42, "nick_name":
"frodo_b", ...}
HTTP 200 OK with a JSON object
{
"about": "你好,這裡是乾太。",
"about_renderred": "你好,這裡是乾太。",
"accept_private_plurk_from": "all",
"avatar": 7345374,
"avatar_big": "https://avatars.plurk.com/10879262-big7345374.jpg",
"avatar_medium": "https://avatars.plurk.com/10879262-medium7345374.gif",
"avatar_small": "https://avatars.plurk.com/10879262-small7345374.gif",
"background_id": 54230,
"badges": [
"9",
"1000_views",
"1000_plurks",
"5000_comments",
"upload_profile_image",
"50_fans"
],
"bday_privacy": 2,
"creature_url": "https://s.plurk.com/cb7e5ab8fb53a7617ac6970707edc407.png",
"date_of_birth": "Mon, 20 Mar 1995 00:01:00 GMT",
"dateformat": 0,
"default_lang": "tr_ch",
"display_name": "乾太₍₍ ◝(・◡・)◟ ⁾⁾",
"enable_2fa": 0,
"fans_count": 71,
"friends_count": 36,
"full_name": "huevo235",
"gender": 1,
"has_profile_image": 1,
"id": 10879262,
"join_date": "Fri, 19 Jun 2015 10:46:40 GMT",
"karma": 95.78,
"link_facebook": false,
"location": "Tainan, Taiwan",
"name_color": null,
"nick_name": "huevo235",
"page_title": "來玩「扮演【魔物獵人:世界】」吧!",
"pinned_plurk_id": null,
"plurks_count": 1568,
"post_anonymous_plurk": false,
"premium": false,
"privacy": "world",
"profile_views": 5709,
"recruited": 0,
"relationship": "not_saying",
"response_count": 6364,
"setup_facebook_sync": false,
"setup_twitter_sync": false,
"setup_weibo_sync": false,
"show_ads": true,
"show_location": 0,
"timeline_privacy": 0,
"timezone": "Asia/Taipei",
"verified_account": false
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Not supported image format or image too big"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Not supported image format or image too big"
}
/APP/Users/getKarmaStats requires
user's access token
Returns info about current user's karma, including current karma, karma growth, karma graph and the latest reason why the karma has dropped.
Required parameters:
none
Successful return:
HTTP 200 OK with a JSON object with karma stats {'karma_trend': ['1282046402-97.85',
'1282060802-97.86', '1282075202-97.87', '1282089602-97.88', ...],
'karma_fall_reason': '', 'current_karma': 97.88, 'karma_graph':
'http://chart.apis.google.com/...'}
HTTP 200 OK with a JSON object
{
"current_karma": 95.78,
"karma_fall_reason": "",
"karma_graph": "https://chart.googleapis.com/chart?cht=lc&chs=300x100&chd=e:AADqHUK-OoQdSSV8ZmdQg6ivkkmZqDr4vixXzMr4vizM224r8V..&chco=cf682f&chf=bg,s,cae7fd&chxt=x,y&chxl=0:%7c09%7c11%7c13%7c16%7c18%7c20%7c22%7c24%7c26%7c28%7c30%7c02%7c04%7c1:%7c95.43%7c95.78",
"karma_trend": [
"1542787843-95.62",
"1542830698-95.62",
"1542875185-95.62",
"1542916954-95.63",
"1542961219-95.64",
"1543002931-95.64",
"1543047455-95.65",
"1543091312-95.66",
"1543134682-95.67",
"1543177338-95.67",
"1543221529-95.68",
"1543263239-95.69",
"1543306991-95.70",
"1543348555-95.70",
"1543393047-95.71",
"1543435087-95.71",
"1543478428-95.72",
"1543521308-95.67",
"1543566075-95.68",
"1543608233-95.69",
"1543652324-95.70",
"1543694689-95.71",
"1543738428-95.72",
"1543780589-95.73",
"1543825259-95.74",
"1543867255-95.74",
"1543911706-95.75",
"1543953592-95.76",
"1543997698-95.77",
"1544039380-95.78"
]
}
karma_trend:
Returns a list of 30 recent karma updates. Each update is a string
'[[unixtimestamp]]-[[karma_value]]'
, e.g. a valid entry is
'1282046402-97.85'
karma_fall_reason:
Why did karma drop? This value is a string and can be: friends_rejections
,
inactivity
, too_short_responses
Profile
/APP/Profile/getOwnProfile requires
user's access token
Returns data that's private for the current user. This can be used to construct a profile and render a timeline of the latest plurks.
Required parameters:
none
Successful return:
Returns a JSON object with a lot of information that can be used to construct a user's own profile and timeline.
Returns a JSON object
{
"friends_count": 12,
"fans_count": 14,
"unread_count": 12, //number of plurks that are unread
"alerts_count": 2, //number of alerts that are unread
"user_info": {
user_info_profile_owner
},
"privacy": "world",
"plurks_users": {
"12": user_info_12,
"313": user_info_313,
...
},
"plurks": [
plurk_data_1,
plurk_data_2,
...
]
}
user_info is a JSON object holding data like
{
"id": 3,
"display_name": "Frodo B",
...
}
plurk_data is a JSON object holding data like
{
"plurk_id": 3,
"content": "Test",
"qualifier_translated": "says",
"qualifier": "says",
"lang": "en"
...
}
Error returns:
/APP/Profile/getPublicProfile
support two-legged OAuth without access token
Fetches public information such as a user's public plurks and basic information. Fetches also if the current user is following the user, are friends with or is a fan.
Required parameters:
user_id: The user_id
of the public profile. Can be integer (like 34) or nick name
(like amix).
Successful return:
Returns a JSON object with a lot of information that can be used to construct a user's public profile and timeline.
Returns a JSON object
{
"friends_count": 12,
"fans_count": 12,
"user_info": user_info_1,
"are_friends": false, //null if not logged in
"is_fan": false, //null if not logged in
"is_following": false, //null if not logged in
"has_read_permission": true,
"privacy": "world",
"plurks": [plurk_data_1, plurk_data_2, ...]
}
user_info is a JSON object holding data like {"id": 3, "display_name": "Frodo B", ...}
plurk_data is a JSON object holding data like {"plurk_id": 3, "content": "Test", "qualifier_translated": "says", "qualifier": "says", "lang": "en" ...}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Invalid user_id"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "User not found"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Invalid user_id"
}
HTTP 400 BAD REQUEST
{
"error_text": "User not found"
}
Real time notifications
Get instant notifications when there are new plurks and responses on a user's timeline. This is much more efficient and faster than polling so please use it!
This API works like this:
- A request is sent to
/APP/Realtime/getUserChannel
and in it you get an unique channel to the specified user's timeline - You do requests to this unqiue channel in order to get notifications
/APP/Realtime/getUserChannel requires
user's access token
Required parameters:
none
Successful return:
Return's a JSON object with an URL that you should listen to, e.g.
{"comet_server":
"https://comet03.plurk.com/comet/1235515351741/?channel=generic-4-f733d8522327edf87b4d1651e6395a6cca0807a0",
"channel_name": "generic-4-f733d8522327edf87b4d1651e6395a6cca0807a0"}
Return's a JSON object
{
"comet_server": "https://comet03.plurk.com/comet/1235515351741/?channel=generic-4-f733d8522327edf87b4d1651e6395a6cca0807a0",
"channel_name": "generic-4-f733d8522327edf87b4d1651e6395a6cca0807a0"
}
/APP/Realtime/getUserChannel
You'll get an URL from /APP/Realtime/getUserChannel
and you do GET requests to this URL to get
new data. Your request will sleep for about 50 seconds before returning a response if there is no new data added
to your channel. You won't get notifications on responses that the logged in user adds, but you will get
notifications for new plurks.
Required parameters:
Parameter | Description |
---|---|
channel | You get this from /APP/Realtime/getUserChannel channel_name parameter. |
Optional parameters:
Parameter | Description |
---|---|
offset | Only fetch new messages from a given offset. You'll get offset when a response is returned, it's
returned as new_offset . |
Successful returns, but no new data:
- Waiting for data to be posted:
{"new_offset": -1}
if you get {"new_offset": -1} back you should do a new request to https://comet03.plurk.com/comet/1235515351741/?channel=generic-4-f733d8522327edf87b4d1651e6395a6cca0807a0&offset=-1
- No data has been posted to the channel and the offset is 3:
{"new_offset": 3}
if you get {"new_offset": 3} back you should do a new request to https://comet03.plurk.com/comet/1235515351741/?channel=generic-4-f733d8522327edf87b4d1651e6395a6cca0807a0&offset=3
Successful returns, with data:
- New responses has been added and the new offset is 21 (notice "type":"new_response"):
New responses has been added and the new offset is 21 (notice "type":"new_response"):
{
"new_offset": 21,
"data": [
{
"plurk_id": 241392217,
"response_count": 12,
"type": "new_response",
"response": {
"lang": "en",
"content_raw": "@Zap: (cozy)",
...
},
"user": {
"5737406": {
"display_name": "",
"uid": 5737406,
...
}
},
"_cid": 21
}
]
}
if you get {"new_offset": 21} back you should do a new request to https://comet03.plurk.com/comet/1235515351741/?channel=generic-4-f733d8522327edf87b4d1651e6395a6cca0807a0&offset=21
- New plurk has been added and the new offset is 26 (notice "type":"new_plurk"):
New plurk has been added and the new offset is 26 (notice "type":"new_plurk"):
{
"new_offset": 27,
"data": [
{
"lang": "en",
"content": "test another",
"content_raw": "test another",
"user_id": 1,
"plurk_type": 1,
"plurk_id": 241403675,
"type": "new_plurk",
"response_count": 0,
"favorite": false,
"qualifier": "says",
"id": 241403675,
"is_unread": 0,
"responses_seen": 0,
"posted": "Tue, 02 Mar 2010 16:21:29 GMT",
"limited_to": "|1||1|",
"no_comments": 0,
"favorite_count": 0,
"owner_id": 1,
"_cid": 27
}
]
}
if you get {"new_offset": 21} back you should do a new request to https://comet03.plurk.com/comet/1235515351741/?channel=generic-4-f733d8522327edf87b4d1651e6395a6cca0807a0&offset=21
Error returns:
- Your offset is wrong and you need to resync your data:
{"new_offset": -3}
Polling
/APP/Polling/getPlurks requires user's
access token
You should use this call to find out if there any new plurks posted to the user's timeline.
It's much more efficient than doing it with /APP/Timeline/getPlurks
, so please use it :)
Required parameters:
Parameter | Description |
---|---|
offset | Return plurks newer than offset, formatted as 2009-6-20T21:55:34 . |
Optional parameters:
limit | The max number of plurks to be returned (default: 20) favorers_detail,
limited_detail and replurkers_detail: See /APP/Timline/getPlurks
for details
Successful return:
Returns a JSON object of plurks and their users, e.g. {"plurks": [{"plurk_id": 3,
"content": "Test", "qualifier_translated": "says",
"qualifier": "says", "lang": "en" ...}, ...], "plurk_users":
{"3": {"id": 3, "nick_name": "alvin", ...}}
Returns a JSON object
{
"plurks": [
{
"plurk_id": 3,
"content": "Test",
"qualifier_translated": "says",
"qualifier": "says",
"lang": "en"
...
},
...
],
"plurk_users": {
"3": {
"id": 3,
"nick_name": "alvin",
...
}
}
}
Error returns:
/APP/Polling/getUnreadCount requires
user's access token
Use this call to find out if there are unread plurks on a user's timeline.
Required parameters:
none
Successful return:
Returns a JSON object of counts, e.g. {"all": 2, "my": 1, "private": 1,
"responded": 0}
Returns a JSON object
{
"all": 2,
"my": 1,
"private": 1,
"responded": 0
}
Error returns:
Timeline
/APP/Timeline/getPlurk requires user's
access token
Required parameters:
Parameter | Description |
---|---|
plurk_id | The unique id of the plurk. Should be passed as a number, and not base 36 encoded. |
Optional parameters:
Parameter | Description |
---|---|
favorers_detail | If true, detailed users information about all favorers of this plurk will be included into "plurk_users" |
limited_detail | If true, detailed users information about recepients of this plurk will be included into "plurk_users" (if this plurk is private) |
replurkers_detail | If true, detailed users information about all replurkers of this plurk will be included into "plurk_users" |
Successful return:
Returns a JSON object of the plurk and the owner, e.g. {"plurks": {"plurk_id": 3,
"content": "Test", "qualifier_translated": "says",
"qualifier": "says", "lang": "en" ...}, ...], "user":
{"id": 3, "nick_name": "alvin", ...}}
Returns a JSON object
{
"plurk": {
"plurk_id": 3,
"content": "Test",
"qualifier_translated": "says",
"qualifier": "says",
"lang": "en"
...
},
"plurk_users": {
...
},
"user": {
"id": 3,
"nick_name": "alvin",
...
}
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Plurk owner not found"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "Plurk not found"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "No permissions"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Plurk owner not found"
}
HTTP 400 BAD REQUEST
{
"error_text": "Plurk not found"
}
HTTP 400 BAD REQUEST
{
"error_text": "No permissions"
}
/APP/Timeline/getPlurks requires user's
access token
Required parameters:
none
Optional parameters:
Parameter | Description |
---|---|
offset | Return plurks older than offset, formatted as 2009-6-20T21:55:34 . |
limit | How many plurks should be returned? Default is 20 . |
filter | Can be my, responded, private, favorite, replurked or mentioned; mentioned is only available for users with user.premium = true. |
favorers_detail | If true, detailed users information about all favorers of all plurks will be included into "plurk_users" |
limited_detail | If true, detailed users information about all private plurks' recepients will be included into "plurk_users" |
replurkers_detail | If true, detailed users information about all replurkers of all plurks will be included into "plurk_users" |
Successful return:
Returns a JSON object of plurks and their users, e.g. {"plurks": [{"plurk_id": 3,
"content": "Test", "qualifier_translated": "says",
"qualifier": "says", "lang": "en" ...}, ...], "plurk_users":
{"3": {"id": 3, "nick_name": "alvin", ...}}
Returns a JSON object
{
"plurks": [
{
"plurk_id": 3,
"content": "Test",
"qualifier_translated": "says",
"qualifier": "says",
"lang": "en"
...
},
...
],
"plurk_users": {
"3": {
"id": 3,
"nick_name": "alvin",
...
}
}
}
Error returns:
/APP/Timeline/getUnreadPlurks requires
user's access token
Required parameters:
none
Optional parameters:
Parameter | Description |
---|---|
offset | Return plurks older than offset, formatted as 2009-6-20T21:55:34 . |
limit | Limit the number of plurks that is returned |
filter | Limit the plurks returned, could be 'my', 'responded', 'private',
'favorite', 'replurked' or 'mentioned' (default: 'all');
'mentioned' is only available for users with user.premium = true.
favorers_detail, limited_detail and replurkers_detail:
See /APP/Timline/getPlurks for details |
Successful return:
Returns a JSON object of unread plurks and their users, e.g. {"plurks": [{"plurk_id":
3, "content": "Test", "qualifier_translated": "says",
"qualifier": "says", "lang": "en" ...}, ...], "plurk_users":
{"3": {"id": 3, "nick_name": "alvin", ...}}
Returns a JSON object
{
"plurks": [
{
"plurk_id": 3,
"content": "Test",
"qualifier_translated": "says",
"qualifier": "says",
"lang": "en"
...
},
...
],
"plurk_users": {
"3": {
"id": 3,
"nick_name": "alvin",
...
}
}
}
Error returns:
/APP/Timeline/getPublicPlurks requires
user's access token
Required parameters:
Parameter | Description |
---|---|
user_id | The user_id of the public plurks owner to get. Can be integer (like 34) or nick name (like amix). |
Optional parameters:
offset | Return plurks older than offset, formatted as 2009-6-20T21:55:34
.
limit | Limit the number of plurks that is retunred (default: 20)
favorers_detail, limited_detail and replurkers_detail: See
/APP/Timline/getPlurks
for details
Successful return:
Returns a JSON object of public plurks and user information, e.g. {"plurks":
[{"plurk_id": 3, "content": "Test", "qualifier_translated":
"says", "qualifier": "says", "lang": "en" ...}, ...],
"plurk_users": {"3": {"id": 3, "nick_name": "alvin",
...}}
Returns a JSON object
{
"plurks": [
{
"plurk_id": 3,
"content": "Test",
"qualifier_translated": "says",
"qualifier": "says",
"lang": "en"
...
},
...
],
"plurk_users": {
"3": {
"id": 3,
"nick_name": "alvin",
...
}
}
}
Error returns:
/APP/Timeline/plurkAdd requires user's
access token
Required parameters:
Parameter | Description |
---|---|
content | The Plurk's text. |
qualifier | The Plurk's qualifier, must be in English. Can be following |
qualifier: The Plurk's qualifier, must be in English. Can be following
loves
likes
shares
gives
hates
wants
has
will
asks
wishes
was
feels
thinks
says
is
:
freestyle
hopes
needs
wonders
Optional parameters:
Parameter | Description |
---|---|
limited_to | Limit the plurk only to some users (also known as private plurking). limited_to should be a
JSON list of friend ids, e.g. limited_to of [3,4,66,34] will only be plurked to these user
ids. If limited_to is [0] then the Plurk is privatley posted to the poster's friends.
|
no_comments | If set to 1, then responses are disabled for this plurk. If set to 2, then only friends can respond to this plurk. |
lang | The plurk's language. Can be following: Show example data |
lang | The plurk's language. Can be following: Show example data
'en': 'English'
'pt_BR': 'Português'
'cn': '中文 (中国)'
'ca': 'Català'
'el': 'Ελληνικά'
'dk': 'Dansk'
'de': 'Deutsch'
'es': 'Español'
'sv': 'Svenska'
'nb': 'Norsk bokmål'
'hi': 'Hindi'
'ro': 'Română'
'hr': 'Hrvatski'
'fr': 'Français'
'ru': 'Pусский'
'it': 'Italiano '
'ja': '日本語'
'he': 'עברית'
'hu': 'Magyar'
'ne': 'Nederlands'
'th': 'ไทย'
'ta_fp': 'Filipino'
'in': 'Bahasa Indonesia'
'pl': 'Polski'
'ar': 'العربية'
'fi': 'Finnish'
'tr_ch': '中文 (繁體中文)'
'tr': 'Türkçe'
'ga': 'Gaeilge'
'sk': 'Slovenský'
'uk': 'українська'
'fa': 'فارسی
Successful return:
Returns a JSON object of the new plurk, e.g. {"plurk_id": 3, "content":
"Test", "qualifier_translated": "says", "qualifier": "says",
"lang": "en" ...}
Returns a JSON object
{
"plurk_id": 3,
"content": "Test",
"qualifier_translated": "says",
"qualifier": "says",
"lang": "en"
...
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Invalid data"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "Must be friends"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "Content is empty"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "anti-flood-same-content"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "anti-flood-spam-domain"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "anti-flood-too-many-new"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Invalid data"
}
HTTP 400 BAD REQUEST
{
"error_text": "Must be friends"
}
HTTP 400 BAD REQUEST
{
"error_text": "Content is empty"
}
HTTP 400 BAD REQUEST
{
"error_text": "anti-flood-same-content"
}
HTTP 400 BAD REQUEST
{
"error_text": "anti-flood-spam-domain"
}
HTTP 400 BAD REQUEST
{
"error_text": "anti-flood-too-many-new"
}
/APP/Timeline/plurkDelete requires
user's access token
Required parameters:
Parameter | Description |
---|---|
plurk_id | The id of the plurk. |
Successful return:
{"success_text": "ok"}
if the plurk is deleted
Returns a JSON object
{
"success_text": "ok"
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Plurk not found"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "No permissions"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Plurk not found"
}
HTTP 400 BAD REQUEST
{
"error_text": "No permissions"
}
/APP/Timeline/plurkEdit requires user's
access token
Required parameters:
Parameter | Description |
---|---|
plurk_id | The id of the plurk. |
content | The content of plurk. |
Successful return:
Returns a JSON object of the updated plurk, e.g. {"plurk_id": 3, "content":
"Test", "qualifier_translated": "says", "qualifier": "says",
"lang": "en" ...}
Returns a JSON object
{
"plurk_id": 3,
"content": "Test",
"qualifier_translated": "says",
"qualifier": "says", "lang": "en"
...
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Plurk not found"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "No permissions"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Plurk not found"
}
HTTP 400 BAD REQUEST
{
"error_text": "No permissions"
}
/APP/Timeline/toggleComments requires
user's access token
Required parameters:
Parameter | Description |
---|---|
plurk_id | The id of the plurk. |
no_comments | new no_comments value (0, 1 or 2) |
Successful return:
latest no_comments value {"no_comments": 1}
Returns a JSON object
{
"no_comments": 1
}
Error returns:
HTTP 400 BAD REQUEST with {"error_text": "Plurk not found"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Plurk not found"
}
/APP/Timeline/mutePlurks requires
user's access token
Required parameters:
Parameter | Description |
---|---|
ids | The plurk ids, formated as JSON, e.g. [342,23242,2323] |
Required example
[
342,
23242,
2323
]
Successful return:
{"success_text": "ok"}
if the plurks are muted
Returns a JSON object
{
"success_text": "ok"
}
Error returns:
/APP/Timeline/unmutePlurks requires
user's access token
Required parameters:
Parameter | Description |
---|---|
ids | The plurk ids, formated as JSON, e.g. [342,23242,2323] |
Required example
[
342,
23242,
2323
]
Successful return:
{"success_text": "ok"}
if the plurks are unmuted
Returns a JSON object
{
"success_text": "ok"
}
Error returns:
/APP/Timeline/favoritePlurks requires
user's access token
Required parameters:
Parameter | Description |
---|---|
ids | The plurk ids, formated as JSON, e.g. [342,23242,2323] |
Required example
[
342,
23242,
2323
]
Successful return:
{"success_text": "ok"}
if the plurks are favorited
Returns a JSON object
{
"success_text": "ok"
}
Error returns:
/APP/Timeline/unfavoritePlurks
requires user's access token
Required parameters:
Parameter | Description |
---|---|
ids | The plurk ids, formated as JSON, e.g. [342,23242,2323] |
Required example
[
342,
23242,
2323
]
Successful return:
{"success_text": "ok"}
if the plurks are unfavorited
Returns a JSON object
{
"success_text": "ok"
}
Error returns:
/APP/Timeline/replurk requires user's
access token
Required parameters:
Parameter | Description |
---|---|
ids | The plurk ids, formated as JSON, e.g. [342,23242,2323] |
Required example
[
342,
23242,
2323
]
Returns:
{"success": true, "results": {342: {"success": true,
"error":""}}}
where top-level success is true if all plurks has been replurked
Returns
{
"success": true,
"results": {
342: {
"success": true,
"error":""
}
}
}
Error returns:
/APP/Timeline/unreplurk requires user's
access token
Required parameters:
Parameter | Description |
---|---|
ids | The plurk ids, formated as JSON, e.g. [342,23242,2323] |
Required example
[
342,
23242,
2323
]
Returns:
{"success": true, "results": {342: {"success": true,
"error":""}}}
where top-level success is true if all plurks has been unreplurked
Returns
{
"success": true,
"results": {
342: {
"success": true,
"error":""
}
}
}
Error returns:
/APP/Timeline/markAsRead requires
user's access token
Required parameters:
Parameter | Description |
---|---|
ids | The plurk ids, formated as JSON, e.g. [342,23242,2323] |
Required example
[
342,
23242,
2323
]
Optional parameters:
Parameter | Description |
---|---|
note_position | If true responses_seen of the plurks will be updated as well (to match response_count).
|
Successful return:
{"success_text": "ok"}
if the plurks are marked as read
Successful return
{
"success_text": "ok"
}
Error returns:
/APP/Timeline/uploadPicture requires
user's access token
To upload a picture to Plurk, you should do a multipart/form-data POST request to
/APP/Timeline/uploadPicture
. This will add the picture to Plurk's CDN network and return a
image link that you can add to /APP/Timeline/plurkAdd
Plurk will automatically scale down the image and create a thumbnail.
Required parameters:
Parameter | Description |
---|---|
image | The image file. |
Successful return:
Returns a JSON object of the links, e.g. like this {"full":
"https://images.plurk.com/3466076_9b41abf90c623ba18f6ada5c1d37156f.jpg", "thumbnail":
"https://images.plurk.com/tn_3466076_9b41abf90c623ba18f6ada5c1d37156f.gif"}
.
Returns a JSON object
{
"full": "https://images.plurk.com/3466076_9b41abf90c623ba18f6ada5c1d37156f.jpg",
"thumbnail": "https://images.plurk.com/tn_3466076_9b41abf90c623ba18f6ada5c1d37156f.gif"
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Invalid file"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Invalid file"
}
/APP/Timeline/reportAbuse requires
user's access token
Required parameters:
Parameter | Description |
---|---|
plurk_id | The plurk id to be reported as abuse. |
categoty | type of abuse. should be one of the following: porn , spam ,
privacy , violence , others . |
Categoty | Description |
---|---|
porn | Nudity and Pornography (祼露和色情) |
spam | Spam and Phishing (垃圾訊息和網路釣魚) |
privacy | Privacy and Identity (隱私和身分) |
violence | Violence and Threats (暴力和威脅) |
others | Others (其他) |
Successful return:
{"success_text": "ok"}
if the plurk is being reported successfully.
Successful return
{
"success_text": "ok"
}
Error returns:
Responses
/APP/Responses/get support
two-legged OAuth without access token
Fetches responses for plurk with plurk_id
and some basic info about the users.
Required parameters:
Parameter | Description |
---|---|
plurk_id | The plurk that the responses belong to. |
Optional parameters:
Parameter | Description |
---|---|
from_response | Only fetch responses from an offset - could be 5, 10 or 15 (default: 0) |
minimal_data | Return minimal data for responses (default: false) |
count | Maximum number of responses to return in this request (default: 0 - all) |
Anonymous responses:
Anonymous plurk may contains anonymous response. In that case, the user_id will be overrided by 99999 (anonymous). And additional value "handle" will be attached to each response, which represents user's anonymous identify and can be used to distinct different responder in the responses. If "handle" is provided, it should be displayed as the responder's display name of the response. And another value "my_anonymous" will be provided as true if the corresponding response was posted by current user.
Successful return:
Returns a JSON object of responses, friends (users that has posted responses) and responses_seen (the last
response that the logged in user has seen) e.g. {"friends": {"3": ...},
"responses_seen": 2, "responses": [{"lang": "en",
"content_raw": "Reforms...}}
Returns a JSON object
{
"friends": {
"3": ...
},
"responses_seen": 2,
"responses": [
{
"lang": "en",
"content_raw": "Reforms",
...
}
]
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Invalid data"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "Plurk not found"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "No permissions"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Invalid data"
}
HTTP 400 BAD REQUEST
{
"error_text": "Plurk not found"
}
HTTP 400 BAD REQUEST
{
"error_text": "No permissions"
}
/APP/Responses/responseAdd requires
user's access token
Adds a responses to plurk_id
. Language is inherited from the plurk.
Required parameters:
Parameter | Description |
---|---|
plurk_id | The plurk that the responses should be added to. |
content | The response's text. |
qualifier | The Plurk's qualifier, must be in English. |
qualifier | The Plurk's qualifier, must be in English.
loves
likes
shares
gives
hates
wants
has
will
asks
wishes
was
feels
thinks
says
is
:
freestyle
hopes
needs
wonders
Successful return:
Returns a JSON object of the new responses, e.g. {"id": 3, "content":
"Test", "qualifier_translated": "says", "qualifier": "says",
...}
Returns a JSON object
{
"id": 3,
"content": "Test",
"qualifier_translated": "says",
"qualifier": "says",
...
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Invalid data"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "Content is empty"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "Plurk not found"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "No permissions"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "anti-flood-same-content"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "anti-flood-too-many-new"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Invalid data"
}
HTTP 400 BAD REQUEST
{
"error_text": "Content is empty"
}
HTTP 400 BAD REQUEST
{
"error_text": "Plurk not found"
}
HTTP 400 BAD REQUEST
{
"error_text": "No permissions"
}
HTTP 400 BAD REQUEST
{
"error_text": "anti-flood-same-content"
}
HTTP 400 BAD REQUEST
{
"error_text": "anti-flood-too-many-new"
}
/APP/Responses/responseDelete requires
user's access token
Deletes a response. A user can delete own responses or responses that are posted to own plurks.
Required parameters:
Parameter | Description |
---|---|
response_id | The id of the response to delete. |
plurk_id | The plurk that the response belongs to. |
Successful return:
{"success_text": "ok"}
if the response has been deleted.
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Invalid data"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "No permissions"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Invalid data"
}
HTTP 400 BAD REQUEST
{
"error_text": "No permissions"
}
Friends and fans
/APP/FriendsFans/getFriendsByOffset support two-legged OAuth without access token
Returns user_id
's friend list in chucks of 10 friends at a time.
Required parameters:
user_id
Optional parameters:
Parameter | Description |
---|---|
offset | The offset, can be 10, 20, 30 etc. |
limit | The max number of friends to be returned (default 10). |
Successful return:
Returns a list of JSON objects users, e.g. [{"id": 3, "nick_name": "alvin",
...}, ...]
Returns a list of JSON objects users
[
{
"id": 3,
"nick_name": "alvin",
...
},
...
]
/APP/FriendsFans/getFansByOffset support two-legged OAuth without access token
Returns user_id
's fans list in chucks of 10 fans at a time.
Required parameters:
user_id
Optional parameters:
Parameter | Description |
---|---|
offset | The offset, can be 10, 20, 30 etc. |
limit | The max number of friends to be returned (default 10). |
Successful return:
Returns a list of JSON objects users, e.g. [{"id": 3, "nick_name": "alvin",
...}, ...]
Returns a list of JSON objects users
[
{
"id": 3,
"nick_name": "alvin",
...
},
...
]
/APP/FriendsFans/getFollowingByOffset requires user's access token
Returns users that the current logged in user follows as fan - in chucks of 10 fans at a time.
Required parameters:
none
Optional parameters:
Parameter | Description |
---|---|
offset | The offset, can be 10, 20, 30 etc. |
limit | The max number of friends to be returned (default 10). |
Successful return:
Returns a list of JSON objects users, e.g. [{"id": 3, "nick_name": "alvin",
...}, ...]
Returns a list of JSON objects users
[
{
"id": 3,
"nick_name": "alvin",
...
},
...
]
/APP/FriendsFans/becomeFriend requires
user's access token
Create a friend request to friend_id
. User with friend_id
has to accept a friendship.
Required parameters:
Parameter | Description |
---|---|
friend_id | The ID of the user you want to befriend. |
Successful return:
{"success_text": "ok"}
if a friend request has been made.
Successful return
{
"success_text": "ok"
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "User can't be befriended"}
as body - HTTP 400 BAD REQUEST with
{"error_text": "User already befriended"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "User can't be befriended"
}
HTTP 400 BAD REQUEST
{
"error_text": "User already befriended"
}
/APP/FriendsFans/removeAsFriend
requires user's access token
Remove friend with ID friend_id
. friend_id
won't be notified.
Required parameters:
Parameter | Description |
---|---|
friend_id | The ID of the user you want to remove |
Successful return:
{"success_text": "ok"}
if friend_id
has been removed as friend.
Successful return
{
"success_text": "ok"
}
/APP/FriendsFans/becomeFan requires
user's access token
Become fan of fan_id. To stop being a fan of someone, user
/APP/FriendsFans/setFollowing?fan_id=FAN_ID&follow=false
.
Required parameters:
Parameter | Description |
---|---|
fan_id | The ID of the user you want to become fan of |
Successful return:
{"success_text": "ok"}
if the current logged in user is a fan of
fan_id
.
Successful return
{
"success_text": "ok"
}
/APP/FriendsFans/setFollowing requires
user's access token
Update following of user_id
. A user can befriend someone, but can unfollow them. This request is
also used to stop following someone as a fan.
Required parameters:
Parameter | Description |
---|---|
user_id | The ID of the user you want to follow/unfollow |
follow | true if the user should be followed, and false if the user should be
unfollowed. |
Successful return:
{"success_text": "ok"}
if following information is updated.
Successful return
{
"success_text": "ok"
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "User must be befriended before you can follow them"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "User must be befriended before you can follow them"
}
/APP/FriendsFans/getCompletion
requires user's access token
Returns a JSON object of the logged in users friends (nick name and full name). This information can be used to construct auto-completion for private plurking. Notice that a friend list can be big, depending on how many friends a user has, so this list should be lazy-loaded in your application.
Required parameters:
none
Successful return:
{"2": {"nick_name": "kan", "full_name": "Kan Kan"},
"4": {"nick_name": "mitsuhiko", ...}, ...}
Successful return
{
"2": {
"nick_name": "kan",
"full_name": "Kan Kan"
},
"4": {
"nick_name": "mitsuhiko",
...
},
...
}
Alerts
General data structures
The data returned by getActive and getHistory can be of following nature:
- Friendship request: (requires action from the user)
{"type": "friendship_request", "from_user": {"nick_name": ...}, "posted": ...}
Friendship request: (requires action from the user)
{
"type": "friendship_request",
"from_user": {
"nick_name": ...
},
"posted": ...
}
- Friendship pending: (requires action from the user)
{"type": "friendship_pending", "to_user": {"nick_name": ...}, "posted": ...}
Friendship pending: (requires action from the user)
{
"type": "friendship_pending",
"to_user": {
"nick_name": ...
},
"posted": ...
}
- New fan notification:
{"type": "new_fan", "new_fan": {"nick_name": ...}, "posted": ...}
New fan notification:
{
"type": "new_fan",
"new_fan": {
"nick_name": ...
},
"posted": ...
}
- Friendship accepted notification:
{"type": "friendship_accepted", "friend_info": {"nick_name": ...}, "posted": ...}
Friendship accepted notification:
{
"type": "friendship_accepted",
"friend_info": {
"nick_name": ...
},
"posted": ...
}
- New friend notification:
{"type": "new_friend", "new_friend": {"nick_name": ...}, "posted": ...}
New friend notification:
{
"type": "new_friend",
"new_friend": {
"nick_name": ...
},
"posted": ...
}
- New private plurk:
{"type": "private_plurk", "owner": {"nick_name": ...}, "posted": ..., "plurk_id": ...}
New private plurk:
{
"type": "private_plurk",
"owner": {
"nick_name": ...
},
"posted": ...,
"plurk_id": ...
}
- User's plurk got liked:
{"type": "plurk_liked", "from_user": {"nick_name": ...}, "posted": ..., "plurk_id": ..., "num_others": ...}
User's plurk got liked:
{
"type": "plurk_liked",
"from_user": {
"nick_name": ...
},
"posted": ...,
"plurk_id": ...,
"num_others": ...
}
- User's plurk got replurked:
{"type": "plurk_replurked", "from_user": {"nick_name": ...}, "posted": ..., "plurk_id": ..., "num_others": ...}
User's plurk got replurked:
{
"type": "plurk_replurked",
"from_user": {
"nick_name": ...
},
"posted": ...,
"plurk_id": ...,
"num_others": ...
}
- User got mentioned in a plurk:
{"type": "mentioned", "from_user": {"nick_name": ...}, "posted": ..., "plurk_id": ..., "num_others": ..., "response_id": ...}
response_id may be null if user was mentioned in the plurk and not in a response.
User got mentioned in a plurk:
{
"type": "mentioned",
"from_user": {
"nick_name": ...
},
"posted": ...,
"plurk_id": ...,
"num_others": ...,
"response_id": ...
}
- User's own plurk got responded:
{"type": "my_responded", "from_user": {"nick_name": ...}, "posted": ..., "plurk_id": ..., "num_others": ..., "response_id": ...}
User's own plurk got responded:
{
"type": "my_responded",
"from_user": {
"nick_name": ...
},
"posted": ...,
"plurk_id": ...,
"num_others": ...,
"response_id": ...
}
/APP/Alerts/getActive requires user's
access token
Return a JSON list of current active alerts.
Required parameters:
none
Successful return:
[{"id": 42, "nick_name": "frodo_b", ...}, ...]
JSON object of all
the active alerts
Successful return
[
{
"id": 42,
"nick_name": "frodo_b",
...
},
...
]
Error returns:
/APP/Alerts/getHistory requires user's
access token
Return a JSON list of past 30 alerts.
Required parameters:
none
Successful return:
[{"nick_name": "frodo_b", ...}, ...]
JSON object of all the history alerts
Successful return
[
{
"nick_name": "frodo_b",
...
},
...
]
Error returns:
/APP/Alerts/addAsFan requires user's access
token
Accept user_id
as fan.
Required parameters:
Parameter | Description |
---|---|
user_id | The user_id that has asked for friendship. |
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
Error returns:
/APP/Alerts/addAllAsFan requires user's
access token
Accept all friendship requests as fans.
Required parameters:
none
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
Error returns:
/APP/Alerts/addAllAsFriends requires
user's access token
Accept all friendship requests as friends.
Required parameters:
none
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
Error returns:
/APP/Alerts/addAsFriend requires user's
access token
Accept user_id
as friend.
Required parameters:
Parameter | Description |
---|---|
user_id | The user_id that has asked for friendship. |
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
Error returns:
/APP/Alerts/denyFriendship requires
user's access token
Deny friendship to user_id
.
Required parameters:
Parameter | Description |
---|---|
user_id | The user_id that has asked for friendship. |
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
Error returns:
/APP/Alerts/removeNotification
requires user's access token
Remove notification to user with id user_id
.
Required parameters:
Parameter | Description |
---|---|
user_id | The user_id that the current user has requested friendship for. |
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
Error returns:
Search
/APP/PlurkSearch/search
support two-legged OAuth without access token
Returns the latest 20 plurks on a search term.
Required parameters:
Parameter | Description |
---|---|
query | The query after Plurks. |
Optional parameters:
Parameter | Description |
---|---|
offset | A plurk_id of the oldest Plurk in the last search result. |
Successful return:
A JSON list of plurks that the user have permissions to see: [{"id": 3, "content":
"Test", "qualifier_translated": "says", "qualifier": "says",
...}, ...]
A JSON list of plurks that the user have permissions to see
[
{
"id": 3,
"content": "Test",
"qualifier_translated": "says",
"qualifier": "says",
...
},
...
]
/APP/UserSearch/search support
two-legged OAuth without access token
Returns 10 users that match query
, users are sorted by karma.
Required parameters:
Parameter | Description |
---|---|
query | The query after users. |
Optional parameters:
Parameter | Description |
---|---|
offset | Page offset, like 10, 20, 30 etc. |
Successful return:
A JSON list of plurks that the user have permissions to see: [{"id": 3, "content":
"Test", "qualifier_translated": "says", "qualifier": "says",
...}, ...]
A JSON list of plurks that the user have permissions to see
[
{
"id": 3,
"content": "Test",
"qualifier_translated": "says",
"qualifier": "says",
...
},
...
]
Emoticons
/APP/Emoticons/get support
two-legged OAuth without access token
Emoticons are a big part of Plurk since they make it easy to express feelings. Check out current Plurk emoticons. This call returns a JSON
object that looks like:
{"karma": {"0": [[":-))", "https:\/\/s.plurk.com\/xxxxx.gif"],
...], ...}, "recruited": {"10": [["(bigeyes)",
"https:\/\/s.plurk.com\/xxxxx.gif"], ...], ...} }
{
"karma": {
"0": [
[
":-))",
"https:\/\/s.plurk.com\/xxxxx.gif"
],
...
],
...
},
"recruited": {
"10": [
[
"(bigeyes)",
"https:\/\/s.plurk.com\/xxxxx.gif"
],
...
],
...
}
}
emoticons["karma"][25]
denotes that the user has to have karma over 25 to use these emoticons.emoticons["recruited"][10]
means that the user has to haveuser.recruited >= 10
to use these emoticons. It's important to check for these things on the client as well, since the emoticon levels are checked in the models.emoticons["custom"]
contains user's customized emoticions if this API is called using three-legged OAuth with user's access token.
Blocks
/APP/Blocks/get requires user's access
token
Required parameters:
none
Optional parameters:
Parameter | Description |
---|---|
offset | What page should be shown, e.g. 0, 10, 20. |
Successful return:
A JSON list of users that are blocked by the current user, e.g. {"total": 12,
"users": {"display_name": "amix3", "gender": 0, "nick_name":
"amix", "has_profile_image": 1, "id": 1, "avatar": null}, ...]}
A JSON list of users that are blocked by the current user
{
"total": 12,
"users": {
"display_name": "amix3",
"gender": 0,
"nick_name": "amix",
"has_profile_image": 1,
"id": 1,
"avatar": null
},
...
}
/APP/Blocks/block requires user's access
token
Required parameters:
Parameter | Description |
---|---|
user_id | The id of the user that should be blocked. |
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
/APP/Blocks/unblock requires user's access
token
Required parameters:
Parameter | Description |
---|---|
user_id | The id of the user that should be unblocked. |
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
Cliques
/APP/Cliques/getCliques requires user's
access token
Required parameters:
none
Successful return:
Returns a JSON list of users current cliques, e.g. ["Homies", "Coders", ...]
Returns a JSON list of users current cliques
[
"Homies",
"Coders",
...
]
/APP/Cliques/getClique requires user's
access token
Required parameters:
Parameter | Description |
---|---|
clique_name | The name of the new clique |
Successful return:
Returns the users in the clique, e.g. [{"display_name": "amix3", "gender":
0, "nick_name": "amix", "has_profile_image": 1, "id": 1,
"avatar": null}, ...]
Returns the users in the clique
[
{
"display_name": "amix3",
"gender": 0,
"nick_name": "amix",
"has_profile_image": 1,
"id": 1,
"avatar": null
},
...
]
/APP/Cliques/createClique requires
user's access token
Required parameters:
Parameter | Description |
---|---|
clique_name | The name of the new clique |
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
/APP/Cliques/renameClique requires
user's access token
Required parameters:
Parameter | Description |
---|---|
clique_name | The name of the clique to rename |
new_name | The name of the new clique |
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
/APP/Cliques/add requires user's access
token
Required parameters:
Parameter | Description |
---|---|
clique_name | The name of the clique |
user_id | The user to add to the clique |
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Clique not created"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Clique not created"
}
/APP/Cliques/remove requires user's access
token
Required parameters:
Parameter | Description |
---|---|
clique_name | The name of the clique |
user_id | The user to remove from the clique |
Successful return:
{"success_text": "ok"}
Successful return
{
"success_text": "ok"
}
Error returns:
- HTTP 400 BAD REQUEST with
{"error_text": "Clique not created"}
as body
HTTP 400 BAD REQUEST
{
"error_text": "Clique not created"
}
OAuth Utilities
/APP/checkToken requires user's access
token
Check if current access token is valid and return information for this token
Required parameters:
none
Successful return:
Parameter | Description |
---|---|
app_id | application id of this access token |
user_id | user id of this access token |
issued | the date/time when this token is issued |
deviceid | deviceid used to authorize this token |
/APP/expireToken requires user's access
token
Expire current access token
Required parameters:
none
Successful return:
Parameter | Description |
---|---|
app_id | application id of this access token |
user_id | user id of this access token |
issued | the date/time when this token is issued |
deviceid | deviceid used to authorize this token |
/APP/checkTime support two-legged OAuth
without access token
Check current time of plurk servers
Required parameters:
none
Successful return:
Parameter | Description |
---|---|
now | current time of plurk servers |
timestamp | current time of plurk servers (as UNIX timestamp) |
app_id | application id of this access token |
user_id | user id of this access token (null for two-legged OAuth) |
/APP/echo support two-legged OAuth without
access token
Test for argument passing.
Required parameters:
data
Successful return:
Parameter | Description |
---|---|
data | same as the data passing in |
length | length of data |