Skip to main content

Pocket

Overview

The Pocket source connector only supports full refresh syncs

Output schema

A single output stream is available from this source:

Features

FeatureSupported?
Full Refresh SyncYes
Incremental SyncNo

Performance considerations

For more info on rate limiting, please refer to Pocket Docs > Rate Limits

Getting started

Requirements

  • Consumer Key
  • Access Token

Setup Guide

In order to obtain the Consumer Key and Access Token, please follow the official Pocket Authentication docs.

It's nevertheless, very recommended to follow this guide by James Mackenzie, which is summarized below:

  1. Create an App in the Pocket Developer Portal, give it Retrieve permissions and get your Consumer Key.
  2. Obtain a Request Token. To do so, you need to issue a POST request to get a temporary Request Token. You can execute the command below:
curl --insecure -X POST -H 'Content-Type: application/json' -H 'X-Accept: application/json' \
https://getpocket.com/v3/oauth/request -d '{"consumer_key":"REPLACE-ME","redirect_uri":"http://www.google.com"}'
  1. Visit the following website from your browser, and authorize the app: https://getpocket.com/auth/authorize?request_token=REPLACE-ME&redirect_uri=http://www.google.com
  2. Convert your Request Token Into a Pocket Access Token. To do so, you can execute the following command:
curl --insecure -X POST -H 'Content-Type: application/json' -H 'X-Accept: application/json' \
https://getpocket.com/v3/oauth/authorize -d '{"consumer_key":"REPLACE-ME","code":"REQUEST-TOKEN"}'

Changelog

Expand to review
VersionDatePull RequestSubject
0.1.212024-10-1246838Update dependencies
0.1.202024-10-0546404Update dependencies
0.1.192024-09-2846138Update dependencies
0.1.182024-09-2145736Update dependencies
0.1.172024-09-1445487Update dependencies
0.1.162024-09-0745225Update dependencies
0.1.152024-08-3144994Update dependencies
0.1.142024-08-2444321Update dependencies
0.1.132024-08-1043116Update dependencies
0.1.122024-07-2742775Update dependencies
0.1.112024-07-2042385Update dependencies
0.1.102024-07-1341923Update dependencies
0.1.92024-07-1041457Update dependencies
0.1.82024-07-0941294Update dependencies
0.1.72024-07-0641001Update dependencies
0.1.62024-06-2540308Update dependencies
0.1.52024-06-2239957Update dependencies
0.1.42024-06-0639298[autopull] Upgrade base image to v1.2.2
0.1.32024-04-1937228Upgrade to CDK 0.80.0 and manage dependencies with Poetry.
0.1.22024-04-1537228Base image migration: remove Dockerfile and use the python-connector-base image
0.1.12024-04-1237228schema descriptions
0.1.02022-10-3018655🎉 New Source: Pocket