Giter VIP home page Giter VIP logo

vkbot-go's Introduction

VkBot-Go

GoDoc Travis rcard

This package provides you bindings for the VK API

Install & Import

Install

go get -u github.com/GDVFox/vkbot-go

Import

import "github.com/GDVFox/vkbot-go"

Example

Simple request to VK API

Bot gets information about user id304508916

package main

import (
    "log"
    "net/http"
    "net/url"

    vkAPI "github.com/GDVFox/vkbot-go"
)

func main() {
    bot, _ := vkAPI.NewVkBot("AccessToken", "5.92", &http.Client{})

    resp, err := bot.Request("users.get", url.Values{
        "user_ids": []string{"304508916"},
        "fields":   []string{"status"},
    })
    if err != nil {
        log.Panic(err)
    }

    log.Println(string(resp.Response))
}

Simple use of Callback API

Bot gets events of group id1337

package main

import (
    "log"
    "net/http"

    vkAPI "github.com/GDVFox/vkbot-go"
)

func main() {
    bot, _ := vkAPI.NewVkBot("AccessToken", "5.92", &http.Client{})

    bot.SetConfirmation(vkAPI.NewConfirmation("/", 1337, "ConfirmString"))
    events := bot.ListenForEvents()

    go http.ListenAndServe(":8080", nil)
    log.Println("start listen :8080")

    for event := range events {
        log.Printf("[%s] %s from group: %d", event.Type, string(event.Object), event.GroupID)
    }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.