目錄表

Plurk API

http://www.plurk.com/API/

in CodeIgniter

http://blog.wu-boy.com/2009/12/30/1920/

plurk 之非官方新手入門手冊

http://weedyc.pixnet.net/blog/post/23311875

Plurk氣象訊息自動發噗

http://angelo-nmb.blogspot.com/2009/03/plurkkarmakuso.html

100個令人驚艷的Plurk佈景主題

http://ipzoner.pixnet.net/blog/post/25633344

Plurk IM 機器人指令

在來自的旁邊顯示國旗

#location{
  padding-left:30px;
  background:url(http://images.plurk.com/175698_b452355fc68dd95b96f3ba120afadfde.gif) no-repeat;
}

在噗浪上使用更多有趣的表情符號

http://ipzoner.pixnet.net/blog/post/27055843

安裝 Firefox 的外掛套件 Greasemonkey。

安裝腳本:http://billypan101.googlepages.com/plurk_smile_billy_pan_v40.user.js

透過 PHP 發表 Plurk

http://gist.github.com/53380

<?php
  define('NICKNAME', 'abc');
  define('PASSWORD', 'iamabc');
  define('USER_ID', '123456');
  
  $message = 'Hello World!';
  
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
  curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
  
  // login
  curl_setopt($ch, CURLOPT_URL, 'http://www.plurk.com/Users/login');
  curl_setopt($ch, CURLOPT_POSTFIELDS, 'nick_name='.NICKNAME.'&password='.PASSWORD);
  curl_exec($ch);
  
  // post
  curl_setopt($ch, CURLOPT_URL, 'http://www.plurk.com/TimeLine/addPlurk');
  curl_setopt($ch, CURLOPT_POSTFIELDS, 'qualifier=says&content='.urlencode($message).'&lang=tr_ch&no_comments=0&uid='.USER_ID);
  curl_exec($ch);
  
  curl_close($ch);
?>

Unofficial Plurk API

Ruby

Based on Official Plurk API , Rails Plugin.

http://github.com/xdite/plurker

http://github.com/xdite/plurk/tree/master

Perl

http://search.cpan.org/dist/WWW-Plurk/

Python

http://code.google.com/p/plurkapipy/

http://code.google.com/p/plurklib/

Plurk Ruby API example:http://gist.github.com/256944

PHP

http://code.google.com/p/rlplurkapi/

C#

http://code.google.com/p/plurkapi/