Skip to content

connpassAPIを使いやすくするためのgolangライブラリ

License

Notifications You must be signed in to change notification settings

ttakuya50/go-connpass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-connpass

go-connpass is a Go client library for accessing the connpass API.

Build Status : Circle CI

LICENSE : MIT License

Requirement

  • Go version 1.7 or greater.

Installation

$ go get github.com/TsujiTakuya55/go-connpass/connpass

Usage

package main

import (
    "fmt"
    "github.com/TsujiTakuya55/go-connpass/connpass"
)

func main() {

    param := &connpass.Param{
        EventId:2,
    }

    client := connpass.NewClient()
    connpass, _, err := client.Get(param)

    if err != nil {
        fmt.Println(fmt.Errorf("err! \n", err))
        return
    }

    for _, k := range *connpass.Events {
        fmt.Println("eventId :", *k.EventId)
        fmt.Println("title :", *k.Title)
        fmt.Println("address :", *k.Address)
        fmt.Println("startedAt :", *k.StartedAt)
    }
}

For details, please click here

Anything Else

coming soon

Author

@Tsuji_Taku50

License

Please see the license file for the license of this library

About

connpassAPIを使いやすくするためのgolangライブラリ

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages