-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ファイルのダウンロードが上手くいかないor遅い #2174
Comments
Conohaからwasabiに移行したせいてDLリンクがうまく動かなくなっている可能性を考えている |
s3からのファイル配信の場合はs3にリダイレクトしてそうですが、302が返ってきたときってファイルのダウンロードはじめてくれるんでしょうか? Lines 102 to 105 in ee248c0
s3を使わない場合はダウンロードになるように工夫をしてそう。 Lines 116 to 118 in ee248c0
|
「ダウンロードが上手くいかない」というのは、ブラウザがファイルとして保存してくれなくてインラインで表示してくれるということですかね? |
UI側のダウンロードリンクが、 と思って試してみたけど、クロスオリジンなのでうまくいかなさそう。 |
元々
今(s3を使用)
|
s3使用時でもContent-Dispositionを付けようとはしていそう Lines 124 to 155 in ee248c0
|
Metadataではなくて、直接指定するのが正しいのでは?(手元の色々いじってる環境でですが動作確認しました) input := &s3.PutObjectInput{
Bucket: aws.String(fs.bucket),
Key: aws.String(key),
Body: src,
ContentType: aws.String(contentType),
ContentDisposition: aws.String(fmt.Sprintf("attachment; filename*=UTF-8''%s", url.PathEscape(name))),
} |
既にアップロード済みのファイルは僕のPRとは別で対処する必要があると思いますがcloseして大丈夫ですか? @logica0419 |
あ、そうかその対処が終わっていなかった…忘れていました |
ダウンロードボタンからダウンロードしようとするとtraq.s3.なんたら~のURLに飛ばされてしまい、ダウンロードができない
スマホからだとしばらくしてからダウンロードが走った記憶がある
The text was updated successfully, but these errors were encountered: