Googleドライブのリンクからアプリで音楽をストリーミングしてリンクにアクセスできるようにするにはどうすればよいですか?

Aug 16 2020

ウェブサイトでは、ユーザーは音楽をアップロードできます。この音楽は私のグーグルドライブアカウントにアップロードされています。その後、次のリンク形式がデータベースに書き込まれます。

https://drive.google.com/uc?id=ID_GOES_HERE

リンクにアクセスすると、次のように変化します。

https://doc-14-8s-docs.googleusercontent.com/docs/securesc/m4p0h6h3bpkoufgbajruvng9n4f51clu/fnjf7ftnl18svtcblses77hapi91jpe5/1597565925000/10139445714759083419/10139445714759083419/1mLu_myEgts9eaoWv6S9nxu8n4qfZM0Rr?authuser=0

長いリンクは、アプリが音楽を再生するために使用されるデータベース内のリンクですが、私はもうそこでそれを開く許可を持っていません。最後の長いリンクにアクセスできるようにするにはどうすればよいですか?この長いリンクを公開する方法はありますか?

ありがとうございました!

    <form id="form">
  <input name="file" id="uploadfile" type="file">
  <input name="filename" id="filename" type="text">
  <input id="submit" type="submit">
</form>
<script>
const form = document.getElementById('form');
form.addEventListener('submit', e => {
  e.preventDefault();
  const file = form.file.files[0];
  const fr = new FileReader();
  fr.readAsArrayBuffer(file);
  fr.onload = f => {
    
    const url =   "https://script.google.com/macros/s/###/exec";  // <---    Please set the URL of Web Apps.

    const qs = new URLSearchParams({filename:    form.filename.value || file.name, mimeType: file.type});
fetch(`${url}?${qs}`, {method: "POST", body: JSON.stringify([...new Int8Array(f.target.result)])})
.then(res => res.json())
.then(e => console.log("https://drive.google.com/uc?   export=download&id=" + e.fileId))
    .catch(err => console.log(err));
  }
});
</script>

これはグーグルアプリのスクリプトです

function doPost(e) {
  const folderId = "root";  // Folder ID which is used for   putting the file, if you need.

  const blob =   Utilities.newBlob(JSON.parse(e.postData.contents),   e.parameter.mimeType, e.parameter.filename);
  const file = DriveApp.getFolderById(folderId ||  "root").createFile(blob);
  const responseObj = {filename: file.getName(), fileId:  file.getId(), fileUrl: file.getUrl()};
  return   ContentService.createTextOutput(JSON.stringify(responseObj  )).setMimeType(ContentService.MimeType.JSON);
}

-------編集-------

私は与えられた解決策を試しました:

残念ながら、期待どおりに機能しません。次のリンクを取得しています。

https://drive.google.com/uc?export=download&id=1Tnh8UgAzFKrp6e-8QCl21v16L3yVCqso 

ここからIDを取得して、ここに挿入すると、次のようになります。

http://docs.google.com/uc?export=open&id=your_file_id 

その結果、私が必要とするリンクである非常に長いリンクになります。たとえば、プライベートブラウザモードの場合、これにはまだアクセスできません。必要のないログインを強制されます。ソリューションのようにリンクを使用してアクセスできる必要があります。これはリンクです:

https://doc-08-8s-docs.googleusercontent.com/docs/securesc/m4p0h6h3bpkoufgbajruvng9n4f51clu/cgag5dus6c18p9hc1hv0362urudm2g6t/1597730475000/10139445714759083419/10139445714759083419/1Tnh8UgAzFKrp6e-8QCl21v16L3yVCqso?e=open&authuser=0 

このリンクにアクセスできるようにする方法は?

このリンクには設定した権限があるようです http://docs.google.com/uc?export=open&id=your_file_id ただし、長いリンクをコピーすると、これはアクセス許可の設定を提供せず、ブロックされます。

回答

2 Viney Aug 16 2020 at 12:29

ファイルを作成したら、誰がアクセスできるかを決定する適切なアクセスレベルと、そのファイルで何ができるかを決定するアクセス許可レベル(読み取り/書き込み/削除)をファイルに与える必要があります。

ユースケースでは、リンクと読み取り専用で一般公開されている必要があります。これがアプリスクリプトでできる方法です

const file = DriveApp.getFolderById(folderId ||  "root").createFile(blob);
file.setSharing(DriveApp.Access.ANYONE_WITH_LINK, DriveApp.Permission.VIEW); // <-- add this