<?php $postData = array('longUrl' => "http://softwarepottikadai.com"); $jsonData = json_encode($postData); $curlObj = curl_init(); curl_setopt($curlObj, CURLOPT_URL, 'https://www.googleapis.com/urlshortener/v1/url'); curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1); //As the API is on https, set the value for CURLOPT_SSL_VERIFYPEER to false. // This will stop cURL from verifying the SSL certificate. curl_setopt($curlObj, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($curlObj, CURLOPT_HEADER, 0); curl_setopt($curlObj, CURLOPT_HTTPHEADER, array('Content-type:application/json')); curl_setopt($curlObj, CURLOPT_POST, 1); curl_setopt($curlObj, CURLOPT_POSTFIELDS, $jsonData); $response = curl_exec($curlObj); $json = json_decode($response); curl_close($curlObj); echo $json->id; ?>
Html, JAVA,DOTNET,Javascript, PHP, and JQuery Scripts and its issues with solutions
Showing posts with label Google Shorten url. Show all posts
Showing posts with label Google Shorten url. Show all posts
Wednesday, 30 July 2014
Google Shorten URL :: To make Bitly Url
Subscribe to:
Posts (Atom)