Skip to content
This repository has been archived by the owner on Apr 15, 2021. It is now read-only.

htuomola/Kippt.NET

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Kippt.NET


Kippt.NET is a C# Library for consuming kippt.com apis.

Features


  • Multi-target Library : .NET 4.0, Silverlight, Windows Phone, Windows RT, Mono
  • No Dependencies
  • Supports All Api Endpoints
  • Synchronus & Asynchronus Support
  • Availaible On Nuget

Kippt.NET On NuGet

Getting Started


var client = new KipptClient("Username", "ApiToken"); var list = new KipptList(); list.Title = "Kippt.NET";

Synchronously

list = list.Create(client);

Asynchronously

client.Completed += (s, e) => { var list = (KipptList)e.Result; }; list.CreateAsync(client);

ChangeLog


v1.0

  • Initial release

v1.5

  • Support for Windows Phone 7.5
  • Support for WinRT
  • Support for Silverlight 5
  • Support for Mono
  • Support for asynchronus programming (event based)
  • Added KipptNotification end point
  • Optimized HTTP authentication logic
  • Search clips with filters : since, list
  • Fixed events logic
  • Optimized KipptEventArgs
  • Better exception handling

v1.6.x

  • Updated api endpoints
  • Fixed large data deserialization
  • Added synchronus and asynchronus helpers for account, users, lists, clips and notifications
  • Liking, commenting and favoriting clips

Read More


For more detailed documentation, you can visit the documentation page.

About

Kippt.NET is a library written in C# for consuming APIs of kippt.com bookmarking application.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published