We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be nice if cloud-storage would allow users to connect to an emulator like https://github.com/oittaa/gcp-storage-emulator or https://github.com/fsouza/fake-gcs-server for local testing. For this the following behavior changes are required:
cloud-storage
AnonymousCredentials
BASE_URL
The text was updated successfully, but these errors were encountered:
Sure this is something that we can do. Do you have a specific API in mind that works well for you? Maybe something like
cloud_storage::Client::new() .disable_auth() .base_url("whatever") // rest of your behaviour
Would that work/be convenient?
Sorry, something went wrong.
The proposed API looks perfect. 👍
No branches or pull requests
It would be nice if
cloud-storage
would allow users to connect to an emulator like https://github.com/oittaa/gcp-storage-emulator or https://github.com/fsouza/fake-gcs-server for local testing. For this the following behavior changes are required:AnonymousCredentials
, but I think it's just that they don't specify any auth headers at all (ref).BASE_URL
.The text was updated successfully, but these errors were encountered: