Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/gemblue/vdocipherproxy

Wrapper/Proxy for Vdo Cipher API.
https://github.com/gemblue/vdocipherproxy

Last synced: 8 days ago
JSON representation

Wrapper/Proxy for Vdo Cipher API.

Awesome Lists containing this project

README

        

# VdoCipherProxy

Wrapper/Proxy for Vdo Cipher API.

### Requirement

PHP Curl Extension

```
sudo apt install php-curl
```

### How to Use

Grab it from composer

```
composer require gemblue/vdo-cipher-proxy
```

Make new object and enjoy!

```
use Gemblue\VdoCipherProxy\VdoCipher;

$VdoCipher = new VdoCipher(YOUR_CIPHER_URL, YOUR_CIPHER_API_SECRET);
$result = $VdoCipher->getOtpPlaybackInfo();

print_r($result);
```