Video Information

GET
Nom Format Requis Description
private_key string requis Private key, available in your account.
public_key string requis Public key, available in your account.
video_key string requis Un libellé identifiant cette vidéo.
expiration int requis Expiration when video source will not be available anymore
hash string requis How to build a hash

How to build your hash - PHP

                    
<?php
    $expireTimestamp = time() + 86400;
    $publicKey = 'public_key';
    $privateKey = 'private_key';
    $hash = hash('sha256', $privateKey . $expireTimestamp . $publicKey );
?>