Medium

Medium

Go to site
Explore
/
Apps
/
Medium

Medium API Integrations

Build and run workflows using the Medium API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Medium API, you can build applications that can:

  • Create and manage posts on behalf of a user
  • Query Medium for published stories, both on a user’s behalf and publicly
  • Follow and unfollow users and publications
  • Recommend stories to a user
  • And more!
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: {
    medium: {
      type: "app",
      app: "medium",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.medium.com/v1/me`,
      headers: {
        Authorization: `Bearer ${this.medium.$auth.oauth_access_token}`,
      },
    })
  },
})
Create a post with Medium API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Medium
 
Try it
Create a post with Medium API on New Item in Feed from RSS API
RSS + Medium
 
Try it
Create a post with Medium API on New Message from Discord API
Discord + Medium
 
Try it
Create a post with Medium API on New Message In Channels from Slack API
Slack + Medium
 
Try it
Create a post with Medium API on New Message in Channel from Discord Bot API
Discord Bot + Medium
 
Try it
Create a post with the Medium API

Create a new Medium post.

 
Try it

Authentication

Medium uses OAuth authentication. When you connect your Medium account, Pipedream will open a popup window where you can sign into Medium and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Medium API.

Pipedream requests the following authorization scopes when you connect your account:

basicProfilelistPublicationspublishPost
OAuth Request Configurations:
  1. authorization
    GEThttps://medium.com/m/oauth/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.comma_separated_scopes}}
  2. accessToken
    POSThttps://api.medium.com/v1/tokenscontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}
  3. refreshToken
    POSThttps://api.medium.com/v1/tokenscontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&grant_type=refresh_token&refresh_token={{oauth.refresh_token}}