1
0
mirror of synced 2024-11-21 20:46:05 +03:00
Go client for MG transport API
Go to file
dependabot[bot] 5edb649366
Bump golang.org/x/net from 0.17.0 to 0.23.0 in /examples/telegram
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.17.0 to 0.23.0.
- [Commits](https://github.com/golang/net/compare/v0.17.0...v0.23.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-19 12:34:22 +00:00
.github/workflows update go in ci 2024-02-12 15:10:10 +03:00
examples Bump golang.org/x/net from 0.17.0 to 0.23.0 in /examples/telegram 2024-04-19 12:34:22 +00:00
v1 noop limiter & interface for limiter 2024-04-17 11:24:02 +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)
}