Skip to content

Error 9000 #5

Description

@leandrodevs

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']

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions