使用 .txt 文件作为字幕中的文本源,该文本文件位于 Google 驱动器上?

Use a .txt file as the source for text in a marquee where that text file is on Google Drive?

我想使用位于 Google 驱动器上的 .txt 文件作为选取框的文本源。我想不出完成这个的正确方法。我想用我的源文件替换下面代码中的静态文本。

<html>
<head>


     <meta name="viewport" content="width=device-width">
</head>
<!-- CSS Code -->
<style>
.GeneratedMarquee {
font-family:Helvetica, sans-serif;
font-size:2em;
line-height:1.3em;
color:#ffffff;
background-color:#000000;
padding:.2em;

}
</style>
<body style="background-color:black">
<!-- HTML Code -->
    <video autoplay loop muted playsinline width="90%" height="90%" name="media" class="center">
    <source src="https://drive.google.com/uc?export=download&id=1d5M6i3z0mI5L1mu0kgqdGGi3tiGqHASJ" type='video/mp4'>
    </video>

    <marquee class="GeneratedMarquee" direction="left" scrollamount="8" behavior="scroll">Replace this with txt file on Google Drive</marquee>

</body>
</html>

The Google Drive API allows you to create apps that leverage Google Drive cloud storage. You can develop applications that integrate with Google Drive, and create robust functionality in your application using Google Drive API.

Google 驱动器 API 不适合用作文件服务器。它只是一个文件存储系统。你试图做的是行不通的。您将无法授权点击该 link 的人访问该文件。

您应该考虑将文件存储在您自己的文件服务器上。