1
0
mirror of synced 2024-11-21 20:46:05 +03:00
Go client for MG transport API
Go to file
Alex Lushpai 11ed32136e
Init (#1)
* Channels methods
* Messages methods
* Partial tests
* Docs
2018-05-17 17:26:18 +03:00
v1 Init (#1) 2018-05-17 17:26:18 +03:00
.gitignore Init (#1) 2018-05-17 17:26:18 +03:00
.travis.yml Init (#1) 2018-05-17 17:26:18 +03:00
LICENSE Init (#1) 2018-05-17 17:26:18 +03:00
README.md Init (#1) 2018-05-17 17:26:18 +03:00

Build Status GitHub release GoLang version

retailCRM Message Gateway Transport API Go client

Install

go get -x github.com/retailcrm/mg-transport-api-client-go

Usage

package main

import (
	"fmt"
	"net/http"

	"github.com/retailcrm/mg-transport-api-client-go/v1"
)

func main() {
    var client = v1.New("https://token.url", "cb8ccf05e38a47543ad8477d49bcba99be73bff503ea6")
    ch := Channel{
        Type: "telegram",
        Events: []string{
            "message_sent",
            "message_updated",
            "message_deleted",
            "message_read",
        },
    }

    data, status, err := c.ActivateTransportChannel(ch)

    if err != nil {
        t.Errorf("%d %v", status, err)
    }

    fmt.Printf("%v", data.ChannelID)
}

Documentation