gojek-api
v1.0.6
Published
unofficial nodejs gojek api
Downloads
1
Readme
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)
register gojek
const { GojekApi } = require('gojek-api')
const { v4 } = require('uuid');
const gojekApi = new GojekApi()
const deviceId = "RANDOM_DEVICE__ID"
const sessionId = v4()
await gojekApi.setdeviceId(deviceId)
await gojekApi.setSessionId(sessionId)
await gojekApi.getOtpRegist("email","the account name","628377777777")
await gojekApi.validateOtpRegist("0000","the token from otp regist")