oss icon indicating copy to clipboard operation
oss copied to clipboard

QOR OSS provides common interface to operate files in cloud storage/filesystem

Results 9 oss issues
Sort by recently updated
recently updated
newest added

An active fork is maintained here: https://github.com/casdoor/oss Welcome issues, PRs and other contributions!

Hi, I'm using AWS S3 as storage provider like this: ```go import( "github.com/qor/oss/s3" awss3 "github.com/aws/aws-sdk-go/service/s3" ) s3Client := s3.New(&s3.Config{ AccessID: ..., AccessKey: ..., Region: ..., Bucket: ..., ACL: awss3.BucketCannedACLPrivate, })...

It seems like Qiniu has changed its go module, but qor/oss didn't update to the newest one.

This seems like unexpected behavior but I wanted to make sure. It appears as though if the `Endpoint` is set or the ACL is set to a `BucketCannedACLPrivate` or `s3.BucketCannedACLAuthenticatedRead`...

I have confused with Endpoint and S3Endpoint params. S3Endpoint - is a real and endpoint to s3 bucket. What is a idea of the `Endpoint` param ?

Hi, In the readme file FTP is mentioned, but I don't think its included in the project yet? So I was wondering if there is already working code to use...

Is there possibility to save to db not struct like this {"FileName":"3jN7ESzgidE.jpg","Url":"apis.com/storage/backend/photos/5/image.jpg"} I need to save just url string. How can I do this?

fix tencent endpoint bug