Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        



Mobizon

Biblioteca para comunicação API HTTP Mobizon SMS


GitHub language count
GitHub top language
GitHub repo size
GitHub license

## 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).