-
Notifications
You must be signed in to change notification settings - Fork 598
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
@google-cloud/storage file getSignedUrl returns trailing dot in URL #2249
Comments
@lukesneeringer should we:
|
Can also confirm azure based services cannot use these trailing dot URLs provided by getSignedUrl - will fail to send an HTTP request |
@shaibt I've updated on SO that our solution for the problem was to add a temporary URI overwriter (to remove the trailing dot, might be done very efficiently using just a regex, but we choose to parse and reconstruct after fixing the the hostname trailing dot). We were actually amazed that Alamofire and iOS handled it pretty good compare to android (and Java) |
Thanks for sharing, and here's just a quick copy-paste for anyone who needs it: file.getSignedUrl(..., function(err, url) {
url = url.replace('storage.googleapis.com.', 'storage.googleapis.com')
}) |
@stephenplusplus this is a work around for a problem which was introduced to solve (and please correct me if I'm wrong) an issue on google backend. If all Java and C# based clients will simply overwrite the fix, could it be the fix is actually ignored by simply using more CPU time globally? |
I'm honestly not sure-- I didn't investigate much into the reasoning behind the change, but it was discussed internally and decided by @lukesneeringer that it was something we wanted. My find/replace above is just a temporary workaround for anyone else that might need it, while we investigate a final solution. |
@stephenplusplus FYI #2214 was IMHO an opinionated discussion with @lukesneeringer being a minority "No" person. I think the decision was made without being aware to the limitations of other environments support for "Absolute domain name" (which I agree is lacking, but simply because it isn't widespread) IMHO many will agree that this change needs to be reverted ASAP (as |
This comment is the basis of my earlier statement regarding why the change was introduced. The big decisions that affect our library go through @lukesneeringer, so when he's available, he will be able to address your feedback. |
@stephenplusplus Adding on your comment before, I'll add a 5.
|
cc @swcloud |
We're going to revert this library-wide. Thanks for your patience while we sorted this out. |
@stephenplusplus is there an ETA for the npm package to be updated? |
@stephenplusplus Can you release a 1.1.1 today to fix this on Android? Ironically, I got a request from another customer asking for the addition of the trailing |
@callmehiphop are you available for a release? |
|
Would it be possible to set the |
Upon updating @google-cloud/storage to the latest package version (1.1.0) introduced a trailing dot in the url.
For example:
https://storage.googleapis.com./<bucket name>/<file name>...
I've traced the cause of this due to #2214
It seems valid by FQDN, on iOS, curl and wget no issue, but on Android:
HTTP FAILED: javax.net.ssl.SSLHandshakeException: java.lang.IllegalArgumentException: Server name value of host_name cannot have the trailing dot
(using OkHttp and Fresco)
Is this by design?
Environment details
6.10.2
0.23.2
"@google-cloud/storage": "^1.1.0"
Steps to reproduce
On Stackoverflow
The text was updated successfully, but these errors were encountered: