Blogger

Blogging platform by Google

Go to site
Explore
/
Apps
/
Blogger

Blogger API Integrations

Build and run workflows using the Blogger 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 Blogger API, you can create or manage your own blog on Blogger. You can also use the API to manage comments on your blog.

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: {
    blogger: {
      type: "app",
      app: "blogger",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/blogger/v3/users/self`,
      headers: {
        Authorization: `Bearer ${this.blogger.$auth.oauth_access_token}`,
      },
    })
  },
})
Create a Post with Blogger API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Blogger
 
Try it
Create a Post with Blogger API on New Item in Feed from RSS API
RSS + Blogger
 
Try it
Create a Post with Blogger API on New Message from Discord API
Discord + Blogger
 
Try it
Create a Post with Blogger API on New Message In Channels from Slack API
Slack + Blogger
 
Try it
Create a Post with Blogger API on New Message in Channel from Discord Bot API
Discord Bot + Blogger
 
Try it
Create a Post with the Blogger API

Creates and publishes a new post or creates a new post as a draft. See the docs here.

 
Try it
Delete a Post with the Blogger API

Permanently removes a post (the deleted post cannot be restored anymore) See the docs here.

 
Try it
Publish a Post with the Blogger API

Publishes a draft post See the docs here.

 
Try it
Revert a Post with the Blogger API

Revert a published or scheduled post to draft state.See the docs here.

 
Try it
Update a Post with the Blogger API

Updates a published post. See the docs here.

 
Try it

Authentication

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

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

emailprofilehttps://www.googleapis.com/auth/blogger
OAuth Request Configurations:
  1. authorization
    GEThttps://accounts.google.com/o/oauth2/auth?client_id={{custom_fields.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}&access_type=offline&prompt=consent
  2. accessToken
    POSThttps://oauth2.googleapis.com/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{custom_fields.client_id}}&client_secret={{custom_fields.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}
  3. refreshToken
    POSThttps://oauth2.googleapis.com/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{custom_fields.client_id}}&client_secret={{custom_fields.client_secret}}&grant_type=refresh_token&refresh_token={{oauth.refresh_token}}