1
0
mirror of synced 2024-11-21 20:46:05 +03:00
Go client for MG transport API
Go to file
2024-04-03 14:07:42 +03:00
.github/workflows update go in ci 2024-02-12 15:10:10 +03:00
examples Bump golang.org/x/crypto from 0.9.0 to 0.17.0 in /examples/telegram 2024-01-16 12:49:32 +00:00
v1 Added WhatsApp-specific channel properties 2024-04-03 14:07:42 +03:00
.gitignore Init (#1) 2018-05-17 17:26:18 +03:00
.golangci.yml more lint fixes 2023-12-29 11:46:18 +03:00
go.mod make rate limiter more concurrent-friendly 2024-02-16 18:05:14 +03:00
go.sum make rate limiter more concurrent-friendly 2024-02-16 18:05:14 +03:00
LICENSE Update product name, cleanup annotations (#68) 2020-12-15 13:33:53 +03:00
README.md remove unused parameter ChannelSettings.SpamAllowed 2021-02-02 17:45:03 +03:00

Build Status Coverage GitHub release Go Report Card GoLang version pkg.go.dev

Message Gateway Transport API Go client

Install

go get -u -v 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",
        Name: "@my_shopping_bot",
        Settings: ChannelSettings{
            Status: Status{
                Delivered: ChannelFeatureNone,
                Read: ChannelFeatureReceive,
            },
            Text: ChannelSettingsText{
                Creating: ChannelFeatureBoth,
                Editing:  ChannelFeatureSend,
                Quoting:  ChannelFeatureReceive,
                Deleting: ChannelFeatureBoth,
            },
            Product: Product{
                Creating: ChannelFeatureSend,
                Deleting: ChannelFeatureSend,
            },
            Order: Order{
                Creating: ChannelFeatureBoth,
                Deleting: ChannelFeatureSend,
            },
        },
    }

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

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

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