pocket_client 0.1.1 copy "pocket_client: ^0.1.1" to clipboard
pocket_client: ^0.1.1 copied to clipboard

outdatedDart 1 only

A library for authenticating and accessing the Pocket API from Dart

pocket_client #

A library for authenticating and accessing the Pocket API from Dart

Quick start #

Authentication:
import 'package:pocket_client/pocket_client.dart';

const consumerKey = '1234-abcd1234abcd1234abcd1234';
const redirectUrl = 'http://some.redirect.uri/autorizationFinished';

main() {
	var authentication = new ClientAuthentication(consumerKey);

	var requestToken;

	authentication.getRequestToken(redirectUrl).then((code) {
		requestToken = code;

		var url = ClientAuthentication.getAuthorizeUrl(requestToken, redirectUrl);
		// work whatever redirect magic you need here
	});

	//..

	authentication.getAccessToken(requestToken).then(onAuthorizationFinished);
}
onAuthorizationFinished(User userData) {
	var accessToken = userData.accessToken;
	// now you have everything to communicate with Pocket 
}
Working with Pocket:
import 'package:pocket_client/pocket_client.dart';

const consumerKey = '1234-abcd1234abcd1234abcd1234';
const accessToken = '5678defg-5678-defg-5678-defg56';

main() {
	var client = new Client(consumerKey, accessToken);

	var options = new RetrieveOptions()
		..since = new DateTime(2015, 5, 4)
		..search = 'Some search query'
		..domain = 'http://domain.test'
		..contentType = ContentType.video
		..detailType = DetailType.complete
		..isFavorite = true
		..sortType = SortType.site
		..state = State.all
		..tag = 'cats'
		..count = 100
		..offset = 10;

	client.getData(options: options).then((PocketResponse response) {
		Map<String, PocketData> items = response.items;
		// do whatever you want with pocket items
	});

	var newItem = new ItemToAdd('http://www.funnycatpix.com/')
		..title = 'FUNNY CAT PICTURES'
		..tweetId = '123456'
		..tags = ['cats', 'cool', 'share'];

	client.addItem(newItem).then((PocketData data) {
		// do whatever you want with received data
	});
}

Api #

See the Api documentation.

Examples #

The basic example is in example file

Features and bugs #

Please fill feature requests and bugs at the issue tracker.

License #

pocket_client is distributed under the BSD license.

0
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A library for authenticating and accessing the Pocket API from Dart

Homepage

Documentation

Documentation

License

BSD-3-Clause (LICENSE)

Dependencies

http

More

Packages that depend on pocket_client