Pocket

Service for managing a reading list of articles and videos

Integrate the Pocket API with the AWS API

Setup the Pocket API trigger to run a workflow which integrates with the AWS API. Pipedream's integration platform allows you to integrate Pocket and AWS remarkably fast. Free for developers.

Save To Later with Pocket API on New Scheduled Tasks from AWS API
AWS + Pocket
 
Try it
Save To Later with Pocket API on New SNS Messages from AWS API
AWS + Pocket
 
Try it
Save To Later with Pocket API on New Inbound SES Emails from AWS API
AWS + Pocket
 
Try it
CloudWatch Logs - Put Log Event with AWS API on New Archived item from Pocket API
Pocket + AWS
 
Try it
CloudWatch Logs - Put Log Event with AWS API on New Favorited item from Pocket API
Pocket + AWS
 
Try it
New Archived item from the Pocket API

Emit new event for each archived item.

 
Try it
New Scheduled Tasks from the AWS API

Creates a Step Function State Machine to publish a message to an SNS topic at a specific timestamp. The SNS topic delivers the message to this Pipedream source, and the source emits it as a new event.

 
Try it
New Favorited item from the Pocket API

Emit new event for each favorited item.

 
Try it
New SNS Messages from the AWS API

Creates an SNS topic in your AWS account. Messages published to this topic are emitted from the Pipedream source.

 
Try it
New Item from the Pocket API

Emit new event for each added item.

 
Try it
CloudWatch Logs - Put Log Event with the AWS API

Uploads a log event to the specified log stream. See docs

 
Try it
Save To Later with the Pocket API

Save articles, videos, images and URLs to your Pocket list. See docs here

 
Try it
DynamoDB - Create Table with the AWS API

Creates a new table to your account. See docs

 
Try it
DynamoDB - Execute Statement with the AWS API

This operation allows you to perform transactional reads or writes on data stored in DynamoDB, using PartiQL. See docs

 
Try it
DynamoDB - Get Item with the AWS API

The Get Item operation returns a set of attributes for the item with the given primary key. If there is no matching item, Get Item does not return any data and there will be no Item element in the response. See docs

 
Try it

Overview of Pocket

Pocket's API on Pipedream allows for the automation of content curation workflows. Users can add, retrieve, and organize articles, videos, or other content they want to view later. By leveraging the API, you can create systems for tagging and sorting saved items, integrating them with other services for further processing or sharing. This could be useful for content creators, researchers, or anyone needing to manage a large influx of information efficiently.

Connect Pocket

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    pocket: {
      type: "app",
      app: "pocket",
    }
  },
  async run({steps, $}) {
    const pocketReq = {
      method: "post",
      url: "/v3/get",
      data: {
        count: 10,
        access_token: this.pocket.$auth.oauth_access_token,
      },
    }
    // proxy pocket request
    return await axios($, {
      url: "https://enkogw2a5epb176.m.pipedream.net",
      params: {
        http_respond: 1,
      },
      data: pocketReq,
    })
  },
})

Overview of AWS

The AWS API unlocks endless possibilities for automation with Pipedream. With this powerful combo, you can manage your AWS services and resources, automate deployment workflows, process data, and react to events across your AWS infrastructure. Pipedream offers a serverless platform for creating workflows triggered by various events that can execute AWS SDK functions, making it an efficient tool to integrate, automate, and orchestrate tasks across AWS services and other apps.

Connect AWS

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import AWS from 'aws-sdk'

export default defineComponent({
  props: {
    aws: {
      type: "app",
      app: "aws",
    }
  },
  async run({steps, $}) {
    const { accessKeyId, secretAccessKey } = this.aws.$auth
    
    /* Now, pass the accessKeyId and secretAccessKey to the constructor for your desired service. For example:
    
    const dynamodb = new AWS.DynamoDB({
      accessKeyId, 
      secretAccessKey,
      region: 'us-east-1',
    })
    
    */
  },
})