Skip to content

Instantly share code, notes, and snippets.

@tbeseda
Created November 30, 2010 21:33
Show Gist options
  • Select an option

  • Save tbeseda/722450 to your computer and use it in GitHub Desktop.

Select an option

Save tbeseda/722450 to your computer and use it in GitHub Desktop.
<?
$host = 'http://api.untappd.com/v1/user_feed/tbeseda?api_key=1234';
$process = curl_init($host);
curl_setopt($process, CURLOPT_USERPWD, 'user:pass');
curl_setopt($process, CURLOPT_RETURNTRANSFER, TRUE);
$return = curl_exec($process);
print_r($return);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment