huobiapi

package module
v1.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 19, 2021 License: MIT Imports: 3 Imported by: 0

README

huobiapi

火币网 API Go 客户端

安装

本模块使用 godep 作为包管理工具

dep ensure -v -add github.com/gostudys/huobiapi

Websocket 版行情数据订阅查询

说明:返回的结果数据使用 go-simplejson 存储

详细代码参考 examples 目录

package main

import (
    "fmt"
    "github.com/gostudys/huobiapi"
)

func main() {
    // 创建客户端实例
    market, err := huobiapi.NewMarket()
    if err != nil {
        panic(err)
    }
    // 订阅主题
    market.Subscribe("market.eosusdt.trade.detail", func(topic string, json *huobiapi.JSON) {
        // 收到数据更新时回调
        fmt.Println(topic, json)
    })
    // 请求数据
    json, err := market.Request("market.eosusdt.detail")
    if err != nil {
        panic(err)
    } else {
        fmt.Println(json)
    }
    // 进入阻塞等待,这样不会导致进程退出
    market.Loop()
}

RESTful 版行情和交易查询

package main

import (
    "fmt"
    "github.com/gostudys/huobiapi"
)

func main() {
    // 创建客户端实例
    client, err := huobiapi.NewClient("key id", "key secret")
    if err != nil {
        panic(err)
    }
    // 发送请求
    ret, err := client.Request("GET", "/market/history/trade", huobiapi.ParamsData{
        "symbol": "eosusdt",
        "size": "10",
    })
    data, err := ret.Get("data").Array()
    if err != nil {
        panic(err)
    }
    for _, v := range data {
        fmt.Println(v)
    }
}

License

MIT License

Copyright (c) 2018 Zongmin Lei <leizongmin@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewClient

func NewClient(accessKeyId, accessKeySecret string) (*client.Client, error)

/ 创建RESTFul客户端

func NewMarket

func NewMarket() (*market.Market, error)

/ 创建WebSocket版Market客户端

Types

type Client

type Client = client.Client

type JSON

type JSON = simplejson.Json

type Listener

type Listener = market.Listener

type Market

type Market = market.Market

type ParamsData

type ParamsData = client.ParamData

Directories

Path Synopsis
_examples

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL