Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caioagiani/mobizon-php
Biblioteca PHP para trabalhar com os serviços Mobizon API
https://github.com/caioagiani/mobizon-php
a2p gateway messaging mobizon php shortcode sms
Last synced: 7 days ago
JSON representation
Biblioteca PHP para trabalhar com os serviços Mobizon API
- Host: GitHub
- URL: https://github.com/caioagiani/mobizon-php
- Owner: caioagiani
- License: mit
- Created: 2021-12-20T03:22:51.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-20T03:35:36.000Z (almost 3 years ago)
- Last Synced: 2024-05-01T16:30:37.675Z (7 months ago)
- Topics: a2p, gateway, messaging, mobizon, php, shortcode, sms
- Language: PHP
- Homepage: https://mobizon.com.br
- Size: 4.88 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Biblioteca para comunicação API HTTP Mobizon SMS
## Instalação
- Baixe o PHP em [php.net](https://www.php.net/downloads.php) e instale-o, caso ainda não tenha.
- Obtenha sua chave em: https://mobizon.com.br/api
## Configuração:
```php
require "lib/mobizon.php";$init = new Mobizon(
"SUA_API_KEY",
"https://api.mobizon.com.br"
);$singleMessage = $init->call("message", "SendSmsMessage", [
"recipient" => "5511941439844",
"text" => "SMS Enviado via API Mobizon"
]);echo $singleMessage;
```## Licença
Documentação [pt-BR](https://mobizon.docs.apiary.io/).
Copyright © 2021 [caioagiani](https://github.com/caioagiani).
Este projeto é licenciado [MIT](https://github.com/caioagiani/mobizon-node/blob/master/LICENSE).