Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s00d/onlinesim-go-api
GO Wrapper for automatic reception of SMS-messages by onlinesim.ru
https://github.com/s00d/onlinesim-go-api
api go onlinesim proxy rent sms sms-api
Last synced: about 1 month ago
JSON representation
GO Wrapper for automatic reception of SMS-messages by onlinesim.ru
- Host: GitHub
- URL: https://github.com/s00d/onlinesim-go-api
- Owner: s00d
- License: apache-2.0
- Created: 2020-08-11T14:57:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-24T11:54:41.000Z (almost 2 years ago)
- Last Synced: 2024-06-20T12:04:44.738Z (7 months ago)
- Topics: api, go, onlinesim, proxy, rent, sms, sms-api
- Language: Go
- Homepage: https://onlinesim.ru
- Size: 32.2 KB
- Stars: 4
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Onlinesim GO API
Wrapper for automatic reception of SMS-messages by onlinesim.ru
## Installation
Require this package in your `package.json` or install it by running:
```bash
go get github.com/s00d/onlinesim-go-api
```### Example
```go
package mainimport (
"github.com/s00d/onlinesim-go-api"
)func main() {
client := onlinesim.NewClient("", "en", "").Numbers()
error, data := client.Get("vkcom", 7)
if error != nil {
panic(error)
}println("end")
println(fmt.Sprintf("%+v\n", data))
}
```## Documentation
All documentation is in the wiki of this project - **[Documentation](https://github.com/s00d/onlinesim-go-api/wiki)**
## Bugs
If you have any problems, please create Issues [here](https://github.com/s00d/onlinesim-go-api/issues)