0
Q:

vivo.sx api clone file php

<?php
//this will clone the vivo file to your account
//original Link: https://vivo.sx/a1b2c4d5e5
//file id: a1b2c4d5e6
//you can clone up to 25 file-id's by adding ',' between the id's
//Like: $file_id = "a1b2c4d5e6,a4b4c4d4e4,c1c2c4c5c5";
$file_id = "a1b2c4d5e6";
$method = "PUT";
$url = "https://vivo.sx/api/v1/files/".$file_id;
$api_key = "myLongKey123456789";
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => $url,
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => $method,
  CURLOPT_POSTFIELDS => "",
  CURLOPT_HTTPHEADER => array(
    "cache-control: no-cache",
    "content-type: application/json",
    "X-AUTH: $api_key"
  ),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
  	echo "cURL Error #:" . $err;
} else {
    echo $response;
}
//more info on https://vivo.sx/api
?>
0
<?php
  //this will response the accountinformations
$method = "GET";
$url = "https://vivo.sx/api/v1/account/";
$api_key = "myLongKey123456789";
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => $url,
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => $method,
  CURLOPT_POSTFIELDS => "",
  CURLOPT_HTTPHEADER => array(
    "cache-control: no-cache",
    "content-type: application/json",
    "X-AUTH: $api_key"
  ),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
  	echo "cURL Error #:" . $err;
} else {
    echo $response;
}
//more info on https://vivo.sx/api
?>
0

New to Communities?

Join the community