你知道一点API PHP脚本的例子吗?

时间:2010-05-19 03:45:54

标签: php bit.ly

你有一个使用bit.ly的API的PHP脚本吗?

3 个答案:

答案 0 :(得分:7)

我只是googled您的问题:Example code

/* Example code */  
$link = "http://www.stackoverflow.com";  

print getSmallLink($link);  

function getSmallLink($longurl){  
// Bit.ly  
$url = "http://api.bit.ly/shorten?version=2.0.1&longUrl=$longurl&login=YOURLOGIN&apiKey=YOURAPIKEY&format=json&history=1";  

$s = curl_init();  
curl_setopt($s,CURLOPT_URL, $url);  
curl_setopt($s,CURLOPT_HEADER,false);  
curl_setopt($s,CURLOPT_RETURNTRANSFER,1);  
$result = curl_exec($s);  
curl_close( $s );  

$obj = json_decode($result, true);  
return $obj["results"]["$longurl"]["shortUrl"];  
}  

答案 1 :(得分:7)

从Ceejayoz的例子来看,你可以把它变成一个单行!

$short_url = json_decode(file_get_contents("http://api.bit.ly/v3/shorten?login=bitlyusername&apiKey=bitlyapikey&longUrl=".urlencode("http://example.com")."&format=json"))->data->url;

答案 2 :(得分:3)

这是very simple API

$long_url = urlencode('http://example.com/');

$bitly_login = 'username';
$bitly_apikey = 'YOUR API KEY';

$bitly_response = json_decode(file_get_contents("http://api.bit.ly/v3/shorten?login={$bitly_login}&apiKey={$bitly_apikey}&longUrl={$long_url}&format=json"));

$short_url = $bitly_response->data->url;