using urlB.org API from PHP

If you are interested to use the urlB.org API from within PHP, here is a simple wrapper.

First download urlborg.php (and, of course, make sure you have your API key).

Now, creating short URLs and getting info about them is easy. Here is an example:

require_once 'urlborg.php' ;
$ub = new urlBorg('use your API key here') ;
$info = $ub->get_info('lgfy') ;
if ($ub->get_error()) {
   echo 'ERROR! Code:' . $ub->get_error('n') .
   ' desc:' . $ub->get_error('s') ;
} else {
   print_r($info) ;
}
$short = $ub->create_new('http://vrypan.net/') ;
if ($ub->get_error()) {
    echo 'ERROR! Code:' . $ub->get_error('n') .
    ' desc:' . $ub->get_error('s') ;
} else {
    print_r($short) ;
}

(the example is included in the class headers. Don’t copy-paste it from this post since WordPress seems to change the quotes in ways that PHP doesn’t like :-)

This entry was posted in urlborg and tagged , , . Bookmark the permalink.

3 Responses to using urlB.org API from PHP

  1. nmpardakis says:

    Thank you, vrypan!
    Very useful

  2. leo says:

    You have an error in the 3rd line:
    $info = $u->get_info(‘lgfy’) ;
    must be:
    $info = $ub->get_info(‘lgfy’) ;
    also check this out:
    http://linkbunch.com/
    feel free to delete this comment.

  3. Panayotis says:

    @leo: fixed. Thanks!

Leave a Reply

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

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>