-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Adding optional content type argument to generate signed URI method #1447
Conversation
Appveyor build failing is covered on #1434. |
response_type=None, response_disposition=None, | ||
generation=None): | ||
def generate_signed_url(self, expiration, method='GET', client=None, | ||
content_type="application/octet-stream", |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
We found a Contributor License Agreement for you (the sender of this pull request), but were unable to find agreements for the commit author(s). If you authored these, maybe you used a different email address in the git commits than was used to sign the CLA (login here to double check)? If these were authored by someone else, then they will need to sign a CLA as well, and confirm that they're okay with these being contributed to Google. |
@googlebot Check CLA again, please. |
client=None, credentials=None, | ||
response_type=None, response_disposition=None, | ||
generation=None): | ||
content_type='application/octet-stream', |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
CLAs look good, thanks! |
@cyluss can you please add a unit test to |
@tseaver Here you are. I appreciate for your feedback. |
LGTM. @dhermes do I recall correctly that you meant to be turning off Appveyor for PRs? |
@tseaver I have set "Branches to build: Only branches specified below" to |
Adding optional content type argument to generate signed URI method
Thanks very much, @cyluss! |
@tseaver Your team gave me great experience. Thank you. |
Fix for #1429. Using default content type as
application/octet-stream
.