我有一个与S3通信的服务器,并且我希望将mp3文件提供给客户端的浏览器,而无需将其下载到服务器。这些文件需要经过身份验证的用户才能访问,因此它们都是私有的。 我也不确定这种功能是否专门位于服务器代码上或可以通过某些JS完成。 我的问题是什么是正确的方法以及如何做?
我的烧瓶代码基本上是这样的:
@app.route('/audio')
def audio():
s3 = boto_session.client("s3", region_name='us-west-2')
file_name = 'some_file_on_s3'
download_path = './static/' + file_name
bucket_name = 'some_bucket'
s3.download_file(bucket_name, file_name, download_path)
return render_template('audio.html', file_source=file_name)
我的“ audio.html”文件如下所示:
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<audio id="t-rex-roar" controls src="{{'./static/'+file_source}}">
Your browser does not support the
<code>audio</code> element.
</audio>
</body>
</html>