This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Vuzit_Service_signature
Vuzit_Document signature function
Returns a Vuzit signature string.
Signatures
- public static signature($service, string $id = ‘’, $time = null, $pages = ’’)
Parameters
- string $service : Name of the service: ‘show’, ‘create’, or ‘destroy’.
- string $id : Document ID.
- $time : Date and time of the request in Epoch time.
- string $pages : String that represents the pages that should be displayed. For instance to show pages 1 to 5 it would be this “0-4”. To show pages 4, 10 and 12 – 15 it would be this [3,9,11-14].
Return type
- string : The signature string.
Usage Example
$documentId = "XXXXXXX";
$date = time();
// Upload "signature" parameter
$signature = Vuzit_Service::signature("show", $documentId, $date);







