Hi, when i am trying to access to the API "openorders", as in the example, it is not possible with the error 9000 "missing parameter". Could you please help me with this error?
def post(self, action, parms):
ts = str(int(DateTime.now().timestamp() * 1000))
data = {
'apiKey': self.__secret.api_key,
'bizCode': action,
'msgNo': ts,
'timestamp': ts,
}
data.update(parms)
data['signature'] = self.__secret.sign(data)
response = self.session.post(url=URL + action, json=data, timeout=15)
response = load_json(response.text)
#if response['code'] != '0':
raise BithumbGlobalError(response['code'], response['msg'])
return response['data']
Hi, when i am trying to access to the API "openorders", as in the example, it is not possible with the error 9000 "missing parameter". Could you please help me with this error?
def post(self, action, parms):
ts = str(int(DateTime.now().timestamp() * 1000))
data = {
'apiKey': self.__secret.api_key,
'bizCode': action,
'msgNo': ts,
'timestamp': ts,
}
data.update(parms)
data['signature'] = self.__secret.sign(data)
response = self.session.post(url=URL + action, json=data, timeout=15)
response = load_json(response.text)
#if response['code'] != '0':
raise BithumbGlobalError(response['code'], response['msg'])
return response['data']