Here is a question. How these 2 pieces of code differ when accessing REST API?
$result = file_get_contents('http://api.bitly.com/v3/shorten?login=user&apiKey=key&longUrl=url');
$ch = curl_init('http://api.bitly.com/v3/shorten?login=user&apiKey=key&longUrl=url');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
because they both produce the same result, judging by:
print_r(json_decode($result))

file_get_contents– xbonez Jun 16 '12 at 15:59cURLis capable of much more thanfile_get_contents. That should be enough. – user849137 Jun 16 '12 at 16:00