Skip to content

Instantly share code, notes, and snippets.

@mklasen
Created October 15, 2019 09:35
Show Gist options
  • Save mklasen/c9569fc38dbc6045006161f7939e7212 to your computer and use it in GitHub Desktop.
Save mklasen/c9569fc38dbc6045006161f7939e7212 to your computer and use it in GitHub Desktop.
Download PDF from API endpoint
<?php
$auth = base64_encode("_user_:_pass_");
$context = stream_context_create([
"http" => [
"header" => "Authorization: Basic $auth"
]
]);
$result = file_get_contents('_url_', false, $context);
file_put_contents('_file_.pdf', $result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment