Вы можете найти ответ на свой вопрос в примерах из официального Google API репозитория клиента PHP :
$file = new Google_Service_Drive_DriveFile();
$result = $service->files->create(
$file,
[
'data' => file_get_contents('path/to/your/file'),
'mimeType' => 'application/octet-stream',
'uploadType' => 'media',
]
);
// $result->id is the ID you're looking for
// $result->name is the name of uploaded file
См. Пример HTML ниже, как выможно использовать объект $result
:
<a href="https://drive.google.com/open?id=<?= $result->id ?>" target="_blank"><?= $result->name ?>