Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/gemblue/vdocipherproxy
- Owner: gemblue
- License: mit
- Created: 2020-04-17T10:00:54.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-06T07:44:51.000Z (over 4 years ago)
- Last Synced: 2024-11-15T19:42:22.224Z (2 months ago)
- Language: PHP
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- 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);
```