Giter Site home page Giter Site logo

go-vkapi's Introduction

VK (Vkontakte) API SDK for Golang

Reviews appreciated! Just create an issue with your review/question/request in GO VKAPI Generator repository.

This repo contains Golang Software Development Kit (SDK) for the VK using public API of this social network.

All platform objects and methods were implemented according to the public JSON schema in official VK repository.

All code in this repository was generated by GO VKAPI Generator.

No manual changes accepted to this repository. All issues should be addressed to GO VKAPI Generator repository.

Repo structure

  • dir errors - package contains VK errors representation
  • dir objects - packages contains Go structures representing VK API objects, ready for marshaling/unmarshaling from/to JSON
  • dir responses - package contains Go structures representing VK API responses
  • api.go - contains implementation of the VK interface for basic functionality
  • api_utils.go - contains some useful utilities used in api.go
  • <method name>.go - file contains implementation of all methods related to appropriate API method name

Examples

Account operations

package main

import (
	"fmt"
	"github.com/Burmuley/go-vkapi"
)

package main

func main() {
    token := "<VK API token>"
  
    Api := go_vkapi.NewApiWithToken(token)
  	VKAccount := go_vkapi.Account{VKApi: Api}
  
  	if AccountInfo, err := VKAccount.Getprofileinfo(); err != nil {
  		fmt.Println(err)
  	} else {
  		fmt.Println(AccountInfo)
  	}	
}

go-vkapi's People

Contributors

burmuley avatar

Watchers

 avatar

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.