Skip to content

Instantly share code, notes, and snippets.

@jlove4m
Last active July 31, 2016 14:07
Show Gist options
  • Select an option

  • Save jlove4m/55f4b0e5fdce0b6f2973 to your computer and use it in GitHub Desktop.

Select an option

Save jlove4m/55f4b0e5fdce0b6f2973 to your computer and use it in GitHub Desktop.
Helping Mike G's student
<?
require_once './unirest/src/Unirest.php';
// These code snippets use an open-source library. http://unirest.io/php
$response = Unirest\Request::get("https://spoonacular-recipe-food-nutrition-v1.p.mashape.com/recipes/findByIngredients?ingredients=apples%2Cflour%2Csugar&limitLicense=false&number=5&ranking=1",
array("X-Mashape-Key" => "<your key>","Accept" => "application/json"));
echo $response->raw_body;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment