Pin this message. (For all the model classes) Most people watching this video are confused at the beginning. Please maintain a proper organization within your video content. * 12:56 UploadFileRequest.cs * 17:36 UploadContentRequest.cs * For the BlobInfo Class: class BlobInfo { public String Content { get; set; } public string ContentType { get; set; } }
hope this help if someone is confused like me and can not get the source code BlobInfo which used in blobService is a custom class class BlobInfo { public Stream Content { get; set; } public string ContentType { get; set; } }
Nick, I've appreciated your videos for a very long time, but this one was so helpful, I couldn't have slept well tonight without becoming a Patreon subscriber of yours.
Excellent, coincidentally yesterday and today I was investigating about it and you made this video. I hope you delve into the prices, which is what I doubt most. Thanks...
Great stuff! I'd love to see how you append data to an existing file in Blob storage. We are thinking about perhaps offloading our logging mechanics into blob storage rather than on the file share they are kept today.
Nick made his own BlobInfo class in the models. You can get access to his source code if you press the link in the description. After you fill out the form in the link, you should get an email invitation to his repository in couple of minutes.
Hi I am getting error at services.AddSingleton(x. It says The best overloaded method for Addsingleton does not have a parameter named x ...i am using .net core 6
Thanks for very clear explanation :) I will also ask about how can I return MD5 integrity checksum of my file, that uploaded to my blobStorage? Hope you can help me.
Hi Nick, Found the source code great tutorial... Just wondering if you could include a view for selecting a file for your machine and uploading to azure blob storage. That's the one bit I'm having issues with getting done... Cheers, Thanks again for a great tutorial..
I have a doubt here that if we want to upload file in side a folder and folder is created a runtime so how can we managedl this? There also a chance of subfolder as per my requirement.
Great video Nick, could you share an example of how to secure blob service with Azure AD? So the user first has to log in then allowed to get or add blob items to storage?
Thank you for your useful video again! As you know, azure offers a lot of solutions and I believe that many of developers have concerns regarding prices and performances. For example, there is virtual machine and app service, which is better in which case.. if I have a VM, shall I use storage or not.. What brings me exactly? If you make a video in order to answer that kind of question, it will be very useful. I like this storage option but I cannot say that if it worths or not. I've calculated the price,it says 17 dollars in my case and it is nothing.. but is it really the correct price?
I am a little bit confussed with this upload using file path. Isn't it only working because client (Postman) and server (.NET Core API) are on the same machine? Otherwise, if they were on separate machines, it would not work, as during the call only filePath and no content is passed to the server. Am I correct?
Loved the video. Very informative! I am having one issue. When doing the await GetBlobAsync, the response I get is "waitingforactivation". Did I miss a step?
Hey Nick, excellent video dude! So I have never messed around with media content like this before and was wondering once we get the Blob Service up and running, where would be a good place to go and learn a little more about displaying video content with the service we built? Other than that, I subscribed, became a patreon member because I love the content, I thought your video was easy to follow and very robust, and I look forward to more of your videos!
Hi @Nick very informative video. I have one question. If user wants to upload say 500MB or 1GB video then one way is, it is uploaded to my server first and then again upload it to azure blob. If there a way to have upload it once to azure blob. Thank you for great video, keep up creating quality content.
Hey Nick! Great Tuto. I was wondering... How can I download files with conditionals? I need to download all files between two dates and I only managed to do it by listing all blobs in the container and then working with the string of file names to extract data and force the conditionals by there. Any tips to it better?
I've been searching videos on how to download but a lot of them show a way that you need to use javascript and use the IJSRuntime to invoke the js. Not the solution I am looking for though...
Great intro into Blob Storage! But that file-upload mechanism looks like black magic to me...! 😯 I mean, you just post some JSON to the server, presumably not sending the actual file content along. So, how does the server end up getting access to the file? From what I understand from web technology (though that might be dated) is that this would require another client-triggered request... 🤔
hello, could you guide me how to resize image using Azure Blob Storage ? Assume that user try to upload an image with over 10mb and we will resize it to even less than 500kb.
Just a quick question, the title says its on .NET core, but I can't find class blobInfo in my project on .NET core, can't be a thing this video is on .NET ?
Pin this message. (For all the model classes)
Most people watching this video are confused at the beginning.
Please maintain a proper organization within your video content.
* 12:56 UploadFileRequest.cs
* 17:36 UploadContentRequest.cs
* For the BlobInfo Class:
class BlobInfo
{
public String Content { get; set; }
public string ContentType { get; set; }
}
hope this help if someone is confused like me and can not get the source code
BlobInfo which used in blobService is a custom class
class BlobInfo
{
public Stream Content { get; set; }
public string ContentType { get; set; }
}
Thanks mate, I was super confused too. It is a legit class in the Azure.Storage.Blobs.Models namespace too/
I´ll gonna try, few days with this error
Thank you very much. You man saved me.
i have made this class in models but still not returning duble parameters, how to make this custom class?
// + constructor here:
public BlobInfo(Stream Content, string ContentType)
{
this.Content = Content;
this.ContentType = ContentType;
}
Nick, thanks for all the useful content you share with us, I appreciate it.
Nick, I've appreciated your videos for a very long time, but this one was so helpful, I couldn't have slept well tonight without becoming a Patreon subscriber of yours.
You made it make so much sense, thanks Nick you ROCK!!
Thank you very much for your efforts to teach us, ordinary people. Thanks)
Excellent, coincidentally yesterday and today I was investigating about it and you made this video. I hope you delve into the prices, which is what I doubt most. Thanks...
Great stuff! I'd love to see how you append data to an existing file in Blob storage. We are thinking about perhaps offloading our logging mechanics into blob storage rather than on the file share they are kept today.
Same, did you find a solution?
Nick, you're the best.
That is all.
Excellent explanation brother ❤
Thanks! I was problem with Azure Storage!
Am to able to find code which mentioned in the description link? How to find it out
Great Tutorial ! Thank you very much.
great video thank you, what if we want to scan files for viruses on uploading
Really good explanation!
Just one thing: using a filepath for uploading will only work when the User hosts the Backend Server on his Machine!
BlobInfo doesn't take any constructors, what am I doing wrong? 10:30
Nick made his own BlobInfo class in the models. You can get access to his source code if you press the link in the description. After you fill out the form in the link, you should get an email invitation to his repository in couple of minutes.
Absolute life saver, thank you sooo much. But please upload the source code, I could not find it even after following the steps in the description XD
Great tutorial! Thanks!
Hi I am getting error at services.AddSingleton(x. It says The best overloaded method for Addsingleton does not have a parameter named x ...i am using .net core 6
Good stuff. I'm trying to find an example of how to upload a blob to a container that has a folder within it. I can't seem to find an example
I keep getting a blob container not found error when trying to get a blob and a unsupported media error in Postman when trying to upload a file
Thanks for very clear explanation :) I will also ask about how can I return MD5 integrity checksum of my file, that uploaded to my blobStorage? Hope you can help me.
20:00 where Nick tips us off that he likes PostgreSQL... see him type out jsonb but then catches error and removes the 'b'... LOL
Hi Nick,
Found the source code great tutorial... Just wondering if you could include a view for selecting a file for your machine and uploading to azure blob storage.
That's the one bit I'm having issues with getting done...
Cheers, Thanks again for a great tutorial..
Have you found out what to do? :) I'm also having the same problem
I have a doubt here that if we want to upload file in side a folder and folder is created a runtime so how can we managedl this? There also a chance of subfolder as per my requirement.
hi Nick , I already subscribed but I am not able to get the source code . Could you please explain how to get it ?
BlobInfo is custom model or refered from Azure.blobs package? can you please let me know as it is causing issue in my code
is a custom model
public class BlobInfo
{
public Stream Content { get; set; }
public string ContentType { get; set; }
}
Great video!
Is there any way to integrate serilog and use append blob in this?
I would have liked to see coverage of Azure Storage emulator as well in the tutorial
Great video Nick, could you share an example of how to secure blob service with Azure AD? So the user first has to log in then allowed to get or add blob items to storage?
Thank you for your useful video again! As you know, azure offers a lot of solutions and I believe that many of developers have concerns regarding prices and performances. For example, there is virtual machine and app service, which is better in which case.. if I have a VM, shall I use storage or not.. What brings me exactly? If you make a video in order to answer that kind of question, it will be very useful. I like this storage option but I cannot say that if it worths or not. I've calculated the price,it says 17 dollars in my case and it is nothing.. but is it really the correct price?
I am a little bit confussed with this upload using file path. Isn't it only working because client (Postman) and server (.NET Core API) are on the same machine? Otherwise, if they were on separate machines, it would not work, as during the call only filePath and no content is passed to the server. Am I correct?
Loved the video. Very informative! I am having one issue. When doing the await GetBlobAsync, the response I get is "waitingforactivation". Did I miss a step?
Hey Nick, excellent video dude! So I have never messed around with media content like this before and was wondering once we get the Blob Service up and running, where would be a good place to go and learn a little more about displaying video content with the service we built? Other than that, I subscribed, became a patreon member because I love the content, I thought your video was easy to follow and very robust, and I look forward to more of your videos!
Hi @Nick
very informative video. I have one question. If user wants to upload say 500MB or 1GB video then one way is, it is uploaded to my server first and then again upload it to azure blob. If there a way to have upload it once to azure blob. Thank you for great video, keep up creating quality content.
Tell me your Repository Name also for this github code
Just wondering how to write unit test for this, I found sdk stuff kind of tricky to mock. Any advice would be appreciated.
Hey Nick! Great Tuto.
I was wondering... How can I download files with conditionals?
I need to download all files between two dates and I only managed to do it by listing all blobs in the container and then working with the string of file names to extract data and force the conditionals by there. Any tips to it better?
I've been searching videos on how to download but a lot of them show a way that you need to use javascript and use the IJSRuntime to invoke the js. Not the solution I am looking for though...
Great! How would you authenticate with a service principle, so you dont have to expose the key? I want to make an app that is limited to "read only".
Will the service crashes if it receives null or string.Empty entries?
How come my BlobInfo constructor doesn't take any argument? Does your BlobInfo come from using Azure.Storage.Blobs.Models?
How to list only blobs based on LastModifiedDate?
Hi Nick,
I like your videos,
Can you create new videos on Azure AD, Table Storage, Cosmos DB.
Thank you.
Great intro into Blob Storage! But that file-upload mechanism looks like black magic to me...! 😯 I mean, you just post some JSON to the server, presumably not sending the actual file content along. So, how does the server end up getting access to the file? From what I understand from web technology (though that might be dated) is that this would require another client-triggered request... 🤔
Great video, do you have this code on github?
hello, could you guide me how to resize image using Azure Blob Storage ? Assume that user try to upload an image with over 10mb and we will resize it to even less than 500kb.
Just a quick question, the title says its on .NET core, but I can't find class blobInfo in my project on .NET core, can't be a thing this video is on .NET ?
Actually after watching a video few times, I saw that it is your custom class. Would be great if you could share whole source code.
It is shared. You can find a link in the description
@Nick Chapsas Thanks for this tutorial !! How can we use prefix to get reference to blob? e.g. $"{moduleId}/{referenceId}"
I have registered but I still cannot get to the code. What is the name of the repo?
BTW - great video :)
Hi nick,video is awesome .can you share the source code sample .i like to learn with sample .thanks
Does Azure blob storage scan for viruses?
Hey everybody! can some one share the link to the repo of this?
fot Get BlobInfo now not work plz update for 12.0
Why you don't want to make your code source public ?
link not work
Where can I get the code?
Hey Everyone. Could anyone explain me the difference between Azure Data Lake Storage Gen2 and About Blob storage. Is it the same?
Thank you
How to get github code for this
The code isn't on description, so a lot of things are not clear just watching the video
Thank you anyway for the great tutorial
It is in the description. You have to be a patreon to get the code, but the instructions are there
useful
great
You never show 'BlobInfo' class.
Watching after 2 years in Oct 2022 . Don't know what to do