Hello,
im using Bitly API shortener for one application and everything works great. My code is like this:
$query = array(
"version" => "3.0",
"longUrl" => $url,
"login" => 'LOGIN',
"apiKey" => 'API_KEY'
);
$query = http_build_query($query);
$ch = curl_init();
...
Now i would like to add second application, and i want to see separates statistics for each application. Generally links created / clicks is all i need, but i need it separated for the two apps i use! At the moment the only solution i can image is creating many bitly accounts, but this sucks!
I was checking API documentation, search the web, but i couldnt find anything usefull. Maybe this is not possible - if so, do you know any other service where this is possible?
Thanks, Peter