Skip to content

Instantly share code, notes, and snippets.

@jmoz
Created November 27, 2012 13:19
Show Gist options
  • Save jmoz/4154192 to your computer and use it in GitHub Desktop.
Save jmoz/4154192 to your computer and use it in GitHub Desktop.
HTTPRequest in PHP, requests in Python
<?php
$r = new HttpRequest('http://pinterestapi.co.uk/jwmoz/pins', HttpRequest::METH_GET);
$r->send();
echo $r->getResponseBody();
print requests.get('http://pinterestapi.co.uk/jwmoz/pins').text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment