0
私はGoogleドライブAPIの統合に取り組んでいます。私はfileIdを取得し、私はすべての親と子のフォルダを持っています。apiを使用してGoogleドライブファイルを埋め込む方法は?
今、私はファイルをウェブに表示したいと思っています。ここにすべてのフォルダとサブフォルダとファイルを取得するコードです
$creds = new Google_Auth_AssertionCredentials(
$serviceAccountName,
$scopes,
file_get_contents($keyFile)
);
$client = new Google_Client();
$client->setApplicationName($appName);
$client->setClientId($clientId);
$client->setAssertionCredentials($creds);
$service = new Google_Service_Drive($client);
$optParams = array();
$results = $service->files->listFiles($optParams);
どのようにファイルを表示し、Web上に表示するか考えてください。