Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A lightweight Zoom API client for Go

License

NotificationsYou must be signed in to change notification settings

fterrag/go-zoom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Thezoom packages provides a lightweightZoom API client. Coverage of endpoints is minimal, butusers.go andmeetings.go should act as good examples for implementing support for additional endpoints.

This package is built to be used withServer-to-Server OAuth apps.

Example Usage

package mainimport ("context""fmt""log""net/http""os""github.com/fterrag/go-zoom/zoom")funcmain() {ctx:=context.Background()httpClient:=&http.Client{}client:=zoom.NewClient(httpClient,os.Getenv("ZOOM_ACCOUNT_ID"),os.Getenv("ZOOM_CLIENT_ID"),os.Getenv("ZOOM_CLIENT_SECRET"),nil)res,_,err:=client.Users.List(ctx,nil)iferr!=nil {log.Fatal(err)}fmt.Printf("%d users\n\n",len(res.Users))for_,user:=rangeres.Users {fmt.Printf("ID: %s\nDisplay Name: %s\nEmail: %s\n\n",user.ID,user.DisplayName,user.Email)}}

About

A lightweight Zoom API client for Go

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp