Skip to content

Allanksr/BloggerAuth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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")
 auth.send(dataAuth).then(resp =>{
  console.log('Post method resp: ', resp) 
})

Test

node index.js

About

Blogger auth to make {POST} requests

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published