Home

Awesome

rsPlurkLib

Introduction

rsPlurkLib is a Plurk API 2.0 library bulit on top of .NET Framework. Written in C#, rsPlurkLib is clean, elegant, and minimally assembly-dependent.

Prerequisites

To build

  1. Clone the repository to your project folder.
  2. Reconfigure the project reference to use a proper version of JSON.NET, source or binary.
  3. Fill in your application key and secret under OAuthInstance.cs
  4. Save, build & run.

Structure

Usage

If you aren't building an interactive client, you may directly assign a token, which significantly reduces the amount of code like this:

PlurkHelper helper = new PlurkHelper();
helper.Client.Token = new OAuthToken("AsDfGhIlB5Zd", "GUjneXpk91a7G32c8X6q9527", OAuthTokenType.Permanent);
helper.AddPlurk("says", "Hello Plurk!");

More examples can be found under Examples folder, with a typical OAuth authentication walkthrough available as a console implementation.

Contribute

You can provide recommendations or report bugs at our issue tracker.

To-dos

The offical Plurk API documentation can be found here.

Author

You can follow @RSChiang on Plurk.

License

rsPlurkLib is released under MIT License.