Code Monkey home page Code Monkey logo

Comments (6)

bennycode avatar bennycode commented on May 27, 2024

Investigation: We can make use of our own error.code which will be ENOENT or ENOTFOUND in this case!

Small workaround:

const Binance = require('binance-api-node').default
const dotenv = require('dotenv')

process.on('unhandledRejection', error => {
  console.error('Catched Binance error', error)
  process.exit(1)
})

if (!process.env.BINANCE_API_KEY) dotenv.load()

const client = Binance({
  apiKey: process.env.BINANCE_API_KEY,
  apiSecret: process.env.BINANCE_API_SECRET,
})

async function getOrder() {
  try {
    const order = await client.getOrder({symbol: 'TRXETH', orderId: 20123533})
    console.log(`order (${Date.now()})`, order)
  } catch (error) {
    if (['ENOENT', 'ENOTFOUND'].includes(error.code)) {
      console.log('Waiting for internet to come back...')
    } else {
      throw error
    }
  } finally {
    setTimeout(getOrder, 2000)
  }
}

getOrder()

I tested this workaround for some time but sometimes I still receive the following error:

Error: Timestamp for this request is outside of the recvWindow.

@balthazar: Do you have any idea how we can tackle the recvWindow error?

from binance-api-node.

balthazar avatar balthazar commented on May 27, 2024

This second error is most likely due to your computer having an out-of-sync clock, maybe you should try updating it.

As for how to handle this case maybe we should catch the ENOENT and ENOTFOUND and throw a more meaningful error that we could include in our error map. The try catch approach seems like the preferred solution anyway, but we need to catch these connectivity errors of websockets too.

from binance-api-node.

bennycode avatar bennycode commented on May 27, 2024

The Timestamp for this request is outside of the recvWindow often happens, when I go offline and go back online. I think it's related to this. Can it be that the request gets cached and is too old, when I come back online?

from binance-api-node.

bitcoinvsalts avatar bitcoinvsalts commented on May 27, 2024

I am also getting Timestamp for this request is outside of the recvWindow any idea why?

from binance-api-node.

balthazar avatar balthazar commented on May 27, 2024

@bennyn Most likely it if it doesn't error out before the connection goes back on

from binance-api-node.

bennycode avatar bennycode commented on May 27, 2024

I will close the issue here because we now export ErrorCodes and based on them the using application can retrigger certain API calls.

@jsappme The "Timestamp for this request is outside of the recvWindow" issue will be tackled in this issue: #80 - Please also try to use the useServerTime property, it might already fix your issue. 😃

from binance-api-node.

Related Issues (20)

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.