blogger_auth

1.0.6 • Public • Published

BloggerAuth

Blogger auth to make {POST} requests

What is this?

A blogger oauthplayground

Installation

Before install, you will must follow some steps...

create your OAuth client in google console console.cloud.google.com

after create you OAuth client, you will use your clientId and clientSecret to create your refreshToken through OAuth 2.0 Playground
that's the scope will need https://www.googleapis.com/auth/blogger

npm i blogger_auth --save

Then...

create an index.js file in the same folder where you have just install library. define all params

const clientId = 'clientId.apps.googleusercontent.com'
const clientSecret = 'clientSecret'
const refreshToken = 'refreshToken'

var dataAuth = {
  clientId: clientId,
  clientSecret: clientSecret,
  refreshToken: refreshToken,
  bloggerId: 'bloggerId',
  postId: 'postId',
  replaceString: `last of last of last comment from api 11-07-2022` 
}
const auth = require("blogger/auth")
 auth.send(dataAuth).then(resp =>{
  console.log('Post method resp: ', resp) 
})

Test

node index.js

Package Sidebar

Install

npm i blogger_auth

Weekly Downloads

1

Version

1.0.6

License

MTI

Unpacked Size

385 kB

Total Files

5

Last publish

Collaborators

  • allanksr