我怎样才能在 PHP 中与 Google Drive Api 共享 link

How can I get shared link with Google Drive Api in PHP

我正在使用 google 驱动器 api 和 php。我确实在新创建的文件夹中上传了一个文件。但我不知道“我怎样才能为新文件夹共享 url”。或“我如何授予 'reader' 新电子邮件地址的权限”?

我想共享文件夹。不是文件

$result = $service->files->create(
    $file,
    array(
        'data' => file_get_contents($file_path),
        'mimeType' => 'application/octet-stream',
    )
);

文件 ID:$fileId = $result['id'];