Giter Site home page Giter Site logo

pocketex's Introduction

pocketex_logo #Pocketex Pocketex is an Elixir client for the Pocket read later service (getpocket.com)

##Getting started

Get a consumer key for your app from http://getpocket.com/developer/apps/new

Setup a web page in your app which will serve as the redirect URL where Pocket will POST the auth data at the end of the authorization process. Look here for more details: http://getpocket.com/developer/docs/authentication

Get a request token {:ok, response} = Pocketex.Auth.get_request_token(@consumer_key, @redirect_uri)

Redirect the user to the Pocket oAuth2 page, for authentication and authorization, passing in your received request token and the callback URL.

request_token = response[:request_token]

redirect(external: Pocketex.Auth.autorization_uri(request_token, (WebUi.Router.Helpers.pocket_path(conn, :callback) |> WebUi.Endpoint.url)))

Upon successful authentication and authorization, you will receive an access token which will be used for further requests.

{:ok, response} = Pocketex.Auth.authorize(@consumer_key, request_token)

access_token = response["access_token"]

We're good to go now, let's get the newest 10 unread items:

response = Pocketex.Item.get(@consumer_key, access_token, %{count: 10, detail_type: "complete", sort: "newest", state: "unread", content_type: "all"})

For additional information, check out the example app (https://github.com/essenciary/pocketex_demo_app) or the docs (http://essenciary.github.io/pocketex/doc/)

pocketex's People

Contributors

essenciary avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.