예제 #1
0
파일: test.php 프로젝트: laiello/bitly
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> 
    <title>Test</title>
</head>
<body>
<?php 
require_once 'lib/bitly.class.php';
include 'config.php';
$bitly = new Bitly($login, $apiKey);
$bitly->setReturnFormat('xml');
try {
    $bitly->error();
} catch (Exception $e) {
    echo '<div>' . $e->getMessage() . '</div>';
}
$url = $bitly->shortenSingle('http://www.ruslanas.com');
//$bitly->setReturnFormat('xml');
//echo $bitly->stats($url);
//exit;
// line below generates error
try {
    $bitly->getThumbnail();
} catch (Exception $e) {
    echo '<div>' . $e->getMessage() . '</div>';
}
$bitly->getInfoArray($url);
$bitly->getStatsArray($url);
echo '<h1>' . $bitly->getTitle() . '</h1>';
echo $bitly->getClicks() . ' clicks<br/>';
echo '<img src="' . $bitly->getThumbnail('medium') . '"/>';
echo '<h2>Expanded data</h2>';
예제 #2
0
파일: soap.php 프로젝트: laiello/bitly
 function getShortened($url)
 {
     include 'config.php';
     $bitly = new Bitly($login, $apiKey);
     return $bitly->shortenSingle($url);
 }
예제 #3
0
파일: test.v3.php 프로젝트: laiello/bitly
<body>
<?php 
require_once 'lib/bitly.v3.class.php';
include 'config.php';
$urls = array('http://u.opposeto.com/eSLwEP', 'http://u.opposeto.com/hAKSbX');
$bitly = new Bitly($login, $apiKey);
//print_r($bitly->clicksByMinute('http://u.opposeto.com/eSLwEP'));
//print_r($bitly->clicksByDay('http://u.opposeto.com/eSLwEP'));
if ($bitly->isProDomain('u.opposeto.com')) {
    echo '<p>This domain is pro!</p>';
}
// this line generates error INVALID_URI
if (!$bitly->shorten('http:/\\yahoo.com')) {
    echo '<div class="error">' . $bitly->getError() . '</div>';
}
echo $bitly->shortenSingle('http://aerodromes.eu');
$data = $bitly->expand('dT0uqL');
echo '<p>' . $data[0]->long_url . '</p>';
$data = $bitly->lookup(array('http://aerodromes.eu', 'http://google.com'));
if (!$data) {
    echo 'Error: ' . $bitly->getErrorCode() . ' "' . $bitly->getError() . '"';
}
foreach ($data as $rowObj) {
    // check if found
    if (empty($rowObj->error)) {
        $url = $rowObj->short_url;
        $title = $bitly->getTitle($url) or trigger_error('Error: ' . $bitly->getErrorCode());
        echo '<h1><a href="' . $url . '">' . $title . '</a></h1>';
        $clicks = $bitly->clicks($url);
        echo '<p>Global clicks: ' . $clicks[0]->global_clicks . '</p>';
        echo '<table>';
예제 #4
0
 private function bitly_shorten($url = null)
 {
     $bitly = new Bitly('inorout', 'R_11acbfd4019e1d133a8dd8ebb339da03');
     return $bitly->shortenSingle($url);
 }