All Projects → ceee → Pocketsharp

ceee / Pocketsharp

Licence: mit
😽 .NET Standard lib for the Pocket API

Labels

Projects that are alternatives of or similar to Pocketsharp

Imageglass Preview
🏔 A modern, versatile image viewer (preview)
Stars: ✭ 72 (-30.77%)
Mutual labels:  uwp
Svgforxaml
Draw SVG image with Win2D
Stars: ✭ 84 (-19.23%)
Mutual labels:  uwp
Fluiframework
Bringing standardization to Fluent Design by providing easy-to-use styles and controls
Stars: ✭ 95 (-8.65%)
Mutual labels:  uwp
Bilibili
哔哩哔哩动画第三方客户端(UWP平台)
Stars: ✭ 75 (-27.88%)
Mutual labels:  uwp
Xamarin Forms Gtk Movies Sample
The Movie DB Xamarin.Forms Sample
Stars: ✭ 83 (-20.19%)
Mutual labels:  uwp
Ffimageloading
Image loading, caching & transforming library for Xamarin and Windows
Stars: ✭ 1,288 (+1138.46%)
Mutual labels:  uwp
Libremidi
A modern C++ MIDI real-time & file I/O library. Supports Windows, macOS, Linux and WebMIDI.
Stars: ✭ 69 (-33.65%)
Mutual labels:  uwp
Unigram
A Telegram desktop app made for Windows 10
Stars: ✭ 1,393 (+1239.42%)
Mutual labels:  uwp
Signal Windows
Unofficial Signal Private Messenger for Windows
Stars: ✭ 83 (-20.19%)
Mutual labels:  uwp
Ffmpeginteropx
FFmpeg decoding library for Windows 10 UWP Apps
Stars: ✭ 94 (-9.62%)
Mutual labels:  uwp
Reswplus
Unleash your resw files with this Visual Studio extension: auto generation of strongly typed static properties, support of pluralization, strongly typed string formatting, etc...
Stars: ✭ 77 (-25.96%)
Mutual labels:  uwp
Faceoff
An iOS, Android and UWP app created in Xamarin.Forms that uses Microsoft's Cognitive Emotion API Services to compare facial expressions
Stars: ✭ 79 (-24.04%)
Mutual labels:  uwp
Active Directory B2c Xamarin Native
This is a simple Xamarin Forms app showcasing how to use MSAL to authenticate users via Azure Active Directory B2C, and access a Web API with the resulting tokens.
Stars: ✭ 91 (-12.5%)
Mutual labels:  uwp
Xamarincommunitytoolkit
The Xamarin Community Toolkit is a collection of Animations, Behaviors, Converters, and Effects for mobile development with Xamarin.Forms. It simplifies and demonstrates common developer tasks building iOS, Android, and UWP apps with Xamarin.Forms.
Stars: ✭ 1,189 (+1043.27%)
Mutual labels:  uwp
Essentials
Essential cross platform APIs for your mobile apps.
Stars: ✭ 1,344 (+1192.31%)
Mutual labels:  uwp
Xamarin.plugins
Cross-platform Native API Access from Shared Code!
Stars: ✭ 1,176 (+1030.77%)
Mutual labels:  uwp
Httptransfertasks
Cross Platform HTTP Transfers for downloading and uploading (supports background operations)
Stars: ✭ 87 (-16.35%)
Mutual labels:  uwp
Fluent Screen Recorder
A simple screen recorder built with UWP and featuring Fluent Design
Stars: ✭ 103 (-0.96%)
Mutual labels:  uwp
Xamarin.animations
Animate your views with simple shareable animation declarations.
Stars: ✭ 103 (-0.96%)
Mutual labels:  uwp
Reactivemvvm
Cross-platform ReactiveUI sample app built for a talk at MSK .NET conf.
Stars: ✭ 94 (-9.62%)
Mutual labels:  uwp

PocketSharp

PocketSharp is a .NET Standard library that integrates the Pocket API v3.

Install PocketSharp using NuGet

Install-Package PocketSharp

Documentation

See wiki

Where's the Article View API?

You can either use the open source ReadSharp parser or if you want to use the official API by Pocket, you have to request access to it.
Afterwards you can use the access information to query the endpoint with PocketSharp. Instructions here.


Usage Example:

A search for items containing CSS:

PocketClient client = new PocketClient("[YOUR_CONSUMER_KEY]", "[YOUR_ACCESS_CODE]");

List<PocketItem> items = await client.Search("css");

items.ForEach(
  item => Debug.WriteLine(item.ID + " | " + item.Title)
);

Which will output:

330361896 | CSS Front-end Frameworks with comparison : By usabli.ca
345541438 | Editr - HTML, CSS, JavaScript playground
251743431 | CSS Architecture
343693149 | CSS3 Transitions - Thank God We Have A Specification!

...


Dependencies

Contributors

ceee ScottIsAFool
ceee ScottIsAFool

License

MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].