Cloudflare R2 - 미리 서명된 URL 생성
3414 단어 cloudflarepythonr2
import logging
import boto3
from botocore.exceptions import ClientError
from botocore.client import Config
def create_presigned_url(bucket_name, object_name, expiration=3600):
s3_client = boto3.client('s3',
endpoint_url='https://<ACCOUNT_ID>.r2.cloudflarestorage.com',
aws_access_key_id='<ACCESS_KEY>',
aws_secret_access_key='<SECRET_KEY>',
config=Config(signature_version='s3v4'),
)
try:
response = s3_client.generate_presigned_url('get_object',
Params={'Bucket': bucket_name,
'Key': object_name},
ExpiresIn=expiration)
except ClientError as e:
logging.error(e)
return None
# The response contains the presigned URL
return response
Django와 함께 R2를 사용하려면 https://djangotherightway.com/using-cloudflare-r2-with-django-for-storage을 살펴보십시오.
Reference
이 문제에 관하여(Cloudflare R2 - 미리 서명된 URL 생성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/shrawanx/cloudflare-r2-generating-presigned-url-25p2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)