Giter Site home page Giter Site logo

Comments (3)

apriady avatar apriady commented on June 27, 2024

Can provide detailed info about it?

from ovoid-nodejs.

siunus avatar siunus commented on June 27, 2024

I run the code below, then get an error like the one above.
ovoid.js.zip

`
const OVOID = require('ovoid');
const readline = require('readline');

let ovoid = new OVOID();

const r = readline.createInterface({
input: process.stdin,
output: process.stdout
});

var OVO_HP = null;
var OVO_OTP = null;
var OVO_PIN = null;

var tanyaHP = function() {
return new Promise((resolve, reject) => {
r.question('No HP OVO: ', (rOVOHP) => {
OVO_HP = rOVOHP;
resolve();
});
});
}

var tanyaOTP = function() {
return new Promise((resolve, reject) => {
r.question('OTP OVO: ', (rOVOOTP) => {
OVO_OTP = rOVOOTP;
resolve();
});
});
}

var tanyaPIN = function() {
return new Promise((resolve, reject) => {
r.question('PIN OVO: ', (rOVOPIN) => {
OVO_PIN = rOVOPIN;
resolve();
});
});
}

var init = async function() {
await tanyaHP();
let refId = await ovoid.login2FA(OVO_HP);

await tanyaOTP();
let accessToken = await ovoid.login2FAVerify(refId, OVO_OTP, OVO_HP);

await tanyaPIN();
let authToken = await ovoid.loginSecurityCode(OVO_PIN, accessToken);

ovoid = new OVOID(authToken);

let balanceCash = await ovoid.getBalance('cash');

console.log(balanceCash);

r.close();

}

init();
`

from ovoid-nodejs.

apriady avatar apriady commented on June 27, 2024

Hi, I have update the documentation, there are some parameter that unclear in previous version of documentation. Can you try it again?

And also please update the ovoid to v1.2.1.

from ovoid-nodejs.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.