Skip to content

justahero/pocketeer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pocketeer

Build Status

A client library for the getpocket.com service written in Elixir. The library supports all endpoints of the Pocket API. It also supports modifying mulitple items in a bulk operation.

If you want to picture how Pocketeer might look, Pixar's character with the same name from the short movie Toy Story Of Terror! is a really good fit.

Installation

If available in Hex, the package can be installed as:

  1. Add pocketeer to your list of dependencies in mix.exs:
def deps do
  [{:pocketeer, "~> 0.1.5"}]
end
  1. Ensure pocketeer is started before your application:
def application do
  [applications: [:pocketeer]]
end

Authentication

To use the Pocket API, first the authentication process needs to be done, by using the consumer key to retrieve an access token. Both are required to use the API.

For this your application needs to be registered on the Pocket Developers page. Once the application is registered the consumer key is displayed on the My Applications page. For more details check the Authorization process on Pocket.

Your application should offer a page where users are redirected to after confirming or declining the authorization request by Pocket.

The following steps show how to use the consumer key to get an access token.

  1. Fetch request_token from Pocket.
{:ok, body} = Pocketeer.Auth.get_request_token(consumer_key, "http://yoursite.com")
#=> {:ok, %{"code" => "abcd", "state" => nil}}
request_token = body["code"]
#=> "abcd"
  1. With this token, redirect the user to the authorization page of your application.
# a helper function can be used to construct the url.
Pocketeer.Auth.authorize_url("abcd", "http://yoursite.com")
#=> "https://getpocket.com/v3/oauth/authorize?request_token=abcd&redirect_uri=http%3A%2F%2Fyoursite.com"
  1. Get an access_token after the user accepts the authorization.
{:ok, body} = Pocketeer.Auth.get_access_token(consumer_key, request_token)
#=> {:ok, %{"access_token" => "efgh", "username" => "pocketuser"}}
access_token = body["access_token"]
#=> "egfh"

For more detailed handling of the request above:

response = Pocketeer.Auth.get_request_token(consumer_key, "http://yoursite.com")
case response do
  {:ok, body}     -> body["code"]
  {:error, error} -> IO.puts "Error: #{error.message}"
end

Usage

Once the consumer_key and access_token are available, the API offers different functions, categorized into Add, Modify and Retrieve.

To save a new item in Pocket:

# with url
Pocketeer.add(client, %{url: "http://example.com", title: "Test", tags: ["news", "test"]})
%{:ok, %{"item" => { ... }}}
# with existing item id
Pocketeer.add(client, %{item_id: "1234", title: "Saved before", tweet_id: "tweet_id"})
%{:ok, %{"item" => { ... }}}

To fetch the list of the last 10 oldest favorited videos.

options = Pocketeer.Get.new(%{sort: :oldest, count: 10, contentType: :video, favorite: true})
{:ok, response} = Pocketeer.get(client, options)

To delete an item and also add tags to another item, executed in a bulk operation

Item.new
|> Item.delete("1234")
|> Item.tags_add("4444", ["great", "stuff"])
|> Pocketeer.post(client)
{:ok, %{"action_results" => [true, true], "status" => 1}}

Other libraries

There are other libraries out there worth checking out:

Licene

This software is licensed under MIT License.

About

A client library for the Pocket API written in Elixir

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages