gandol / gojek-api

unofficial nodejs gojek api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gojek-api

unofficial nodejs gojek api

Installing

using yarn

yarn add gojek-api

using npm

npm i gojek-api

Usage

using gojek api

const { GojekApi } = require('gojek-api')
const gojekApi = new GojekApi()

set the authorization token before make call to mostly all gojek endpoint

const token = "your_token_here" //without Bearer
gojekApi.setAuthHeader(token)

using gopay api

const { GopayApi } = require('gojek-api')
const token = "your_token_here" //without Bearer
const gopayApi = new GopayApi(token)

About

unofficial nodejs gojek api


Languages

Language:JavaScript 100.0%