https://github.com/gemblue/vdocipherproxy
Wrapper/Proxy for Vdo Cipher API.
https://github.com/gemblue/vdocipherproxy
Last synced: about 1 year ago
JSON representation
Wrapper/Proxy for Vdo Cipher API.
- Host: GitHub
- URL: https://github.com/gemblue/vdocipherproxy
- Owner: gemblue
- License: mit
- Created: 2020-04-17T10:00:54.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-06T07:44:51.000Z (about 6 years ago)
- Last Synced: 2025-05-14T08:43:50.036Z (about 1 year ago)
- Language: PHP
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```