download file log from blob storage using node js
I download a file from azure blob storage by blobService.getUrl(container, blobName, sasToken).
on Internet Explorer, I see source of URL download.
you can see the
Could you help me how to rename from download ?
azure
add a comment |
I download a file from azure blob storage by blobService.getUrl(container, blobName, sasToken).
on Internet Explorer, I see source of URL download.
you can see the
Could you help me how to rename from download ?
azure
Are you looking to hide the download URL or change the name of the file on download?
– Gaurav Mantri
Jun 28 '18 at 5:34
@GauravMantri i want to hide the download URL or change candadevstorageaccount.blob..... to example.com.
– Loan NT
Jun 28 '18 at 6:49
add a comment |
I download a file from azure blob storage by blobService.getUrl(container, blobName, sasToken).
on Internet Explorer, I see source of URL download.
you can see the
Could you help me how to rename from download ?
azure
I download a file from azure blob storage by blobService.getUrl(container, blobName, sasToken).
on Internet Explorer, I see source of URL download.
you can see the
Could you help me how to rename from download ?
azure
azure
edited Nov 22 '18 at 15:44
Loan NT
asked Jun 28 '18 at 3:58
Loan NTLoan NT
185
185
Are you looking to hide the download URL or change the name of the file on download?
– Gaurav Mantri
Jun 28 '18 at 5:34
@GauravMantri i want to hide the download URL or change candadevstorageaccount.blob..... to example.com.
– Loan NT
Jun 28 '18 at 6:49
add a comment |
Are you looking to hide the download URL or change the name of the file on download?
– Gaurav Mantri
Jun 28 '18 at 5:34
@GauravMantri i want to hide the download URL or change candadevstorageaccount.blob..... to example.com.
– Loan NT
Jun 28 '18 at 6:49
Are you looking to hide the download URL or change the name of the file on download?
– Gaurav Mantri
Jun 28 '18 at 5:34
Are you looking to hide the download URL or change the name of the file on download?
– Gaurav Mantri
Jun 28 '18 at 5:34
@GauravMantri i want to hide the download URL or change candadevstorageaccount.blob..... to example.com.
– Loan NT
Jun 28 '18 at 6:49
@GauravMantri i want to hide the download URL or change candadevstorageaccount.blob..... to example.com.
– Loan NT
Jun 28 '18 at 6:49
add a comment |
1 Answer
1
active
oldest
votes
If you wish to hide the account name, you could map a custom domain to your blob storage endpoint for example, map mydomain.com
to myaccount.blob.core.windows.net
.
You will find this link useful for mapping a custom domain to blob storage endpoint: https://docs.microsoft.com/en-us/azure/storage/blobs/storage-custom-domain-name.
No, i don't want to change blob storage domain, i only want to change title source download. Instead of showing blob domain, i'll show domain of web app
– Loan NT
Jun 28 '18 at 7:35
1
If that is the case, you will need to download the blob first on your web server and then stream it from there.
– Gaurav Mantri
Jun 28 '18 at 8:07
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f51074500%2fdownload-file-log-from-blob-storage-using-node-js%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you wish to hide the account name, you could map a custom domain to your blob storage endpoint for example, map mydomain.com
to myaccount.blob.core.windows.net
.
You will find this link useful for mapping a custom domain to blob storage endpoint: https://docs.microsoft.com/en-us/azure/storage/blobs/storage-custom-domain-name.
No, i don't want to change blob storage domain, i only want to change title source download. Instead of showing blob domain, i'll show domain of web app
– Loan NT
Jun 28 '18 at 7:35
1
If that is the case, you will need to download the blob first on your web server and then stream it from there.
– Gaurav Mantri
Jun 28 '18 at 8:07
add a comment |
If you wish to hide the account name, you could map a custom domain to your blob storage endpoint for example, map mydomain.com
to myaccount.blob.core.windows.net
.
You will find this link useful for mapping a custom domain to blob storage endpoint: https://docs.microsoft.com/en-us/azure/storage/blobs/storage-custom-domain-name.
No, i don't want to change blob storage domain, i only want to change title source download. Instead of showing blob domain, i'll show domain of web app
– Loan NT
Jun 28 '18 at 7:35
1
If that is the case, you will need to download the blob first on your web server and then stream it from there.
– Gaurav Mantri
Jun 28 '18 at 8:07
add a comment |
If you wish to hide the account name, you could map a custom domain to your blob storage endpoint for example, map mydomain.com
to myaccount.blob.core.windows.net
.
You will find this link useful for mapping a custom domain to blob storage endpoint: https://docs.microsoft.com/en-us/azure/storage/blobs/storage-custom-domain-name.
If you wish to hide the account name, you could map a custom domain to your blob storage endpoint for example, map mydomain.com
to myaccount.blob.core.windows.net
.
You will find this link useful for mapping a custom domain to blob storage endpoint: https://docs.microsoft.com/en-us/azure/storage/blobs/storage-custom-domain-name.
answered Jun 28 '18 at 7:01
Gaurav MantriGaurav Mantri
72.3k8109134
72.3k8109134
No, i don't want to change blob storage domain, i only want to change title source download. Instead of showing blob domain, i'll show domain of web app
– Loan NT
Jun 28 '18 at 7:35
1
If that is the case, you will need to download the blob first on your web server and then stream it from there.
– Gaurav Mantri
Jun 28 '18 at 8:07
add a comment |
No, i don't want to change blob storage domain, i only want to change title source download. Instead of showing blob domain, i'll show domain of web app
– Loan NT
Jun 28 '18 at 7:35
1
If that is the case, you will need to download the blob first on your web server and then stream it from there.
– Gaurav Mantri
Jun 28 '18 at 8:07
No, i don't want to change blob storage domain, i only want to change title source download. Instead of showing blob domain, i'll show domain of web app
– Loan NT
Jun 28 '18 at 7:35
No, i don't want to change blob storage domain, i only want to change title source download. Instead of showing blob domain, i'll show domain of web app
– Loan NT
Jun 28 '18 at 7:35
1
1
If that is the case, you will need to download the blob first on your web server and then stream it from there.
– Gaurav Mantri
Jun 28 '18 at 8:07
If that is the case, you will need to download the blob first on your web server and then stream it from there.
– Gaurav Mantri
Jun 28 '18 at 8:07
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f51074500%2fdownload-file-log-from-blob-storage-using-node-js%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Are you looking to hide the download URL or change the name of the file on download?
– Gaurav Mantri
Jun 28 '18 at 5:34
@GauravMantri i want to hide the download URL or change candadevstorageaccount.blob..... to example.com.
– Loan NT
Jun 28 '18 at 6:49