Thinkific

Create online courses and membership sites with Thinkific and feel confident that you've got the easiest technology and the best support in the industry.

Integrate the Thinkific API with the Reddit API

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

Create User with Thinkific API on New Comments by User from Reddit API
Reddit + Thinkific
 
Try it
Create User with Thinkific API on New comments on a post from Reddit API
Reddit + Thinkific
 
Try it
Create User with Thinkific API on New hot posts on a subreddit from Reddit API
Reddit + Thinkific
 
Try it
Create User with Thinkific API on New Links by User from Reddit API
Reddit + Thinkific
 
Try it
Create User with Thinkific API on New Links on a Subreddit from Reddit API
Reddit + Thinkific
 
Try it
Lesson Completed (Instant) from the Thinkific API

Emit new event when a user completes a lesson in a course.

 
Try it
New Comments by User from the Reddit API

Emit new event each time a user posts a new comment.

 
Try it
New Full Enrollment (Instant) from the Thinkific API

Emit new event when a user enrolls in your course.

 
Try it
New comments on a post from the Reddit API

Emit new event each time a new comment is added to a subreddit.

 
Try it
New Order (Instant) from the Thinkific API

Emit new event when a new purchase has been made.)

 
Try it
Create User with the Thinkific API

Creates a new user on Thinkific. See the documentation

 
Try it
List Comments in a Post with the Reddit API

List comments for a specific post. See the docs here

 
Try it
Enroll User with the Thinkific API

Creates a new Enrollment for specified student in specified course. See the documentation

 
Try it
List Subreddits by Query with the Reddit API

List subreddits based on a search criteria. See the docs here

 
Try it
Update User with the Thinkific API

Updates the information of a specific user on Thinkific. See the documentation

 
Try it

Overview of Thinkific

Thinkific's API opens a treasure trove of possibilities for automating and enhancing the e-learning experience. It provides programmatic access to your Thinkific site, allowing you to manage courses, users, enrollments, and more. With Pipedream's serverless platform, you can connect Thinkific to a multitude of other applications, automate tasks, sync data across various services, and trigger workflows based on specific events, all without writing a line of server code.

Connect Thinkific

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    thinkific: {
      type: "app",
      app: "thinkific",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.thinkific.com/api/public/v1/courses`,
      headers: {
        "X-Auth-API-Key": `${this.thinkific.$auth.api_key}`,
        "X-Auth-Subdomain": `${this.thinkific.$auth.subdomain}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Overview of Reddit

The Reddit API unlocks the potential to automate interactions with one of the largest online communities. With Pipedream, you can tap into the Reddit ecosystem to monitor trends, engage with audiences, or curate content. Whether it's tracking mentions of your brand, auto-posting to subreddits, or gathering data for analysis, the API offers a breadth of functionalities — from getting posts and comments to creating new threads and managing account settings.

Connect Reddit

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    reddit: {
      type: "app",
      app: "reddit",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://oauth.reddit.com/api/v1/me`,
      headers: {
        Authorization: `Bearer ${this.reddit.$auth.oauth_access_token}`,
      },
    })
  },
})

Community Posts

Building a Reddit Workflow with Pipedream
Building a Reddit Workflow with Pipedream
Almost four years ago I blogged about a demo I built using Reddit's API. The demo was a multi-user application that made use of Mongo for persistence and Passport.js for user authentication. You would login, select subreddit's to subscribe to, and then once a day it would email you the new posts from that subreddit. This was built in a "traditional" Node.js style with a server running full time to process requests. I thought it would be fun to build this again (although slightly different) using Pipedream's support for working with the Reddit API. I built two different versions of a simple workflow I'd like to share below.
Updating my Reddit Workflow with Pipedream
Updating my Reddit Workflow with Pipedream
Back almost exactly a month ago, I blogged about using Pipedream to build a Reddit email report. The idea was that I wanted a daily email of posts from my subscribed subreddits for the past 24 hours of content. The implementation was a bit complex. I used one workflow to handle "get a days worth of content from subreddit" as a general "API" and another workflow connected to my authentication. It handles getting my subscriptions, hitting the API, and then generating the email. This worked well, but after a while of actually getting the email, I noticed some problems. So I decided to fix that.