How to use VeryPDF Cloud API from WordPress?

I wanna use your Cloud API and I would like to talk with someone.

Is it possible?

Do you have a plugin for WordPress?

Customer
------------------------------------------------

image
Thanks for your message, if you wish to use VeryPDF Cloud API, you can subscribe it from following web page directly,

https://www.verypdf.com/online/cloud-api/try-and-buy.html

After you subscribe it, you can get your APIKEY by following steps,

Step 1: Register an account on registration page (http://online.verypdf.com/wp-login.php?action=register ),
Step 2: Get an APIKEY on http://online.verypdf.com/wp-admin/accountinfo.php page,

We haven't a plugin for WordPress yet, however, you can call VeryPDF Cloud API from PHP cod easily, you can integrate it into your WordPress website easily too, please refer to simple PHP code at below,

<?php
//The Code
/* gets the data from a URL */
function get_data($url)
{
    $ch = curl_init();
    $timeout = 5;
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    $data = curl_exec($ch);
    curl_close($ch);
    return $data;
}

//The Usage
$returned_content = get_data(
'http://online.verypdf.com/api/?
apikey=XXXX-XXXX-XXXX-XXXX
&app=html2image
&infile=https://www.verypdf.com
&outfile=verypdf.jpg
');
echo $returned_content;
?>

VeryPDF

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *


Verify Code   If you cannot see the CheckCode image,please refresh the page again!