Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $service = new Google_Service_Drive($client);
  2.  
  3. // download pdf
  4. $response = $service->files->export($fileId, 'application/pdf', array('alt' => 'media'));
  5. $content = $response->getBody()->getContents();
  6. $fp = fopen($exported_pdf_location.'sheet.pdf', 'w');
  7. fwrite($fp, $content);
  8. fclose($fp);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement