{"id":45108354,"url":"https://github.com/webexcommunity/webex-go-sdk","last_synced_at":"2026-03-04T04:04:43.091Z","repository":{"id":289042082,"uuid":"969926607","full_name":"WebexCommunity/webex-go-sdk","owner":"WebexCommunity","description":"A Go SDK for Cisco Webex API","archived":false,"fork":false,"pushed_at":"2026-03-01T00:46:17.000Z","size":2182,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-01T02:44:10.784Z","etag":null,"topics":["cisco","sdk","sdk-go","webex","webex-teams"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/WebexCommunity/webex-go-sdk/v2","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WebexCommunity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-21T06:53:17.000Z","updated_at":"2026-03-01T00:44:43.000Z","dependencies_parsed_at":"2026-03-01T02:00:46.016Z","dependency_job_id":null,"html_url":"https://github.com/WebexCommunity/webex-go-sdk","commit_stats":null,"previous_names":["tejzpr/webex-go-sdk","webexcommunity/webex-go-sdk"],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/WebexCommunity/webex-go-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebexCommunity%2Fwebex-go-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebexCommunity%2Fwebex-go-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebexCommunity%2Fwebex-go-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebexCommunity%2Fwebex-go-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WebexCommunity","download_url":"https://codeload.github.com/WebexCommunity/webex-go-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebexCommunity%2Fwebex-go-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30071671,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T03:25:38.285Z","status":"ssl_error","status_checked_at":"2026-03-04T03:25:05.086Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cisco","sdk","sdk-go","webex","webex-teams"],"created_at":"2026-02-19T22:11:57.651Z","updated_at":"2026-03-04T04:04:43.068Z","avatar_url":"https://github.com/WebexCommunity.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# Webex Go SDK\n\nA comprehensive, lightweight Go SDK for Cisco Webex API\n\n[Go Reference](https://pkg.go.dev/github.com/WebexCommunity/webex-go-sdk/v2)\n[License: MPL 2.0](https://opensource.org/licenses/MPL-2.0)\n[Open Source](https://github.com/WebexCommunity/webex-go-sdk)\n[Go Tests](https://github.com/WebexCommunity/webex-go-sdk/actions/workflows/go-test.yml)\n[Lint](https://github.com/WebexCommunity/webex-go-sdk/actions/workflows/golangci-lint.yml)\n[Codecov](https://codecov.io/gh/tejzpr/webex-go-sdk)\n[Release](https://github.com/WebexCommunity/webex-go-sdk/releases/latest)\n[Go Report Card](https://goreportcard.com/report/github.com/WebexCommunity/webex-go-sdk/v2)\n\n## Implementation Status\n\n- ✅ All REST APIs are fully implemented and working\n- ✅ WebSocket APIs with end-to-end encrypted message decryption\n- ✅ Real-time Webex Calling with WebRTC media (Mobius/BroadWorks)\n\n## Installation\n\n```bash\ngo get github.com/WebexCommunity/webex-go-sdk/v2\n```\n\n## Quick Start\n\n```go\npackage main\n\nimport (\n    \"fmt\"\n    \"log\"\n    \"os\"\n\n    \"github.com/WebexCommunity/webex-go-sdk/v2\"\n)\n\nfunc main() {\n    // Get access token from environment\n    accessToken := os.Getenv(\"WEBEX_ACCESS_TOKEN\")\n    if accessToken == \"\" {\n        log.Fatal(\"WEBEX_ACCESS_TOKEN environment variable is required\")\n    }\n\n    // Create client\n    client, err := webex.NewClient(accessToken, nil)\n    if err != nil {\n        log.Fatalf(\"Error creating client: %v\", err)\n    }\n\n    // Get my own details\n    me, err := client.People().GetMe()\n    if err != nil {\n        log.Fatalf(\"Error getting my details: %v\", err)\n    }\n\n    fmt.Printf(\"Hello, %s!\\n\", me.DisplayName)\n}\n```\n\n## Supported APIs\n\n### REST APIs (Fully Implemented)\n\n- **People** - Manage users in your organization\n- **Messages** - Send and receive messages in rooms\n- **Rooms** - Create and manage Webex rooms\n- **Teams** - Create and manage Webex teams\n- **Team Memberships** - Add and remove people from teams\n- **Memberships** - Add and remove people from rooms\n- **Webhooks** - Register for notifications\n- **Attachment Actions** - Handle interactive card submissions\n- **Events** - Subscribe to Webex events\n- **Room Tabs** - Manage tabs in Webex rooms\n- **Meetings** - Create, list, update, and delete Webex meetings\n- **Meeting Transcripts** - List, download, and manage meeting transcripts and snippets\n- **Calling** - Call history, call settings (DND, call waiting, call forwarding, voicemail), contacts\n\n### WebSocket APIs\n\n- **Mercury** - Real-time WebSocket connection with automatic reconnection\n- **Conversation Events** - Listen for messages, shares, and acknowledgements\n- **End-to-End Encryption** - Full JWE decryption using KMS (ECDH key exchange + AES-256-GCM)\n\n### Real-Time Call Control (Webex Calling)\n\n- **CallingClient** - Line registration with Mobius, call lifecycle management, Mercury event routing\n- **AudioBridge** - Browser-facing WebRTC PeerConnection with bidirectional RTP relay (PCMU/PCMA)\n- **Call Control** - Dial, answer, hold, resume, transfer (blind/consult), DTMF, mute/unmute\n- **SignalingTransport** - Transport-agnostic WebRTC signaling interface (WebSocket, gRPC, etc.)\n- **Address Normalization** - Phone number sanitization and SIP/tel URI handling\n\n## Examples\n\nSee the [examples](./examples) directory.\n\n- [Calling Example](./examples/calling) - Web-based call control with browser audio bridge\n\n### Sending a Message\n\n```go\nmessage := \u0026messages.Message{\n    RoomID: \"ROOM_ID\",\n    Text:   \"Hello, World!\",\n}\n\ncreatedMessage, err := client.Messages().Create(message)\nif err != nil {\n    log.Fatalf(\"Error sending message: %v\", err)\n}\nfmt.Printf(\"Message sent: ID=%s\\n\", createdMessage.ID)\n```\n\n## Documentation\n\nFor detailed documentation, examples, and API reference, see:\n\n- [Go Reference Documentation](https://pkg.go.dev/github.com/WebexCommunity/webex-go-sdk/v2)\n- [Examples Directory](./examples)\n- [Cisco Webex API Documentation](https://developer.webex.com/docs/api/getting-started)\n\n## Requirements\n\n- Go 1.21 or later\n\n## Questions, Support \u0026 Discussion\n\nwebex-go-sdk is a community developed and community-supported project. If you experience any issues using this package, please report them using the issues page.\n\nPlease join the [Webex Go SDK - Community Contributors](https://eurl.io/#Lvauinm-o) Webex space to ask questions, join the discussion, and share your projects and creations.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Add your name to [CONTRIBUTORS.md](./CONTRIBUTORS.md) if not already present\n5. Push to the branch (`git push origin feature/amazing-feature`)\n6. Open a Pull Request\n\nSee [CONTRIBUTORS.md](./CONTRIBUTORS.md) for the list of contributors.\n\n## License\n\nThis project is licensed under the Mozilla Public License 2.0 - see the [LICENSE](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebexcommunity%2Fwebex-go-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebexcommunity%2Fwebex-go-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebexcommunity%2Fwebex-go-sdk/lists"}