Thank you so much for such a concise yet complete explanation. I couldn't find out why I couldn't consume my API. Turns out I completly forgot about CORS. Keep up the good work !
سلام اقای شاد . تدریستون عالی هست ، و از ویدیوتون ممنونم . میخواستم درخواست کنم یک ویدو بسازید در باره نحوه تعیین سطح دسترسی کاربران با نقش های مختلف به سطوح مختلخ . authentication . این مسئله رو زیاد دنبالش میگردم ولی چیزی که اصولی باشه رو پیدا نمیکنم . از ویدو خوبتون هم متشکرم . ❤❤❤❤❤
از توجه مثبت شما سپاسگزارم. اتفاقن چیزی که راجع به سطوح مختلف دسترسی اشاره کردید یکی از برنامه های آموزشی مورد نظر من هست که تهیه و ازائه کنم، ولی چون این مجموعه بر طبق یک روال منطقی و از پیش تعیین شده تدوین شده، ارائه این ویدیو در زمان حاظر در دستور کارم نیست. با این وجود مطمئنم که ویدیوهای بعدی را بسیار آموزنده، جذاب و مفید خواهید یافت.
سلام امیر جان، ببخشید بخاطر تاخیر طولانی در ارسال این پاسخ. خیلی شلوغ بودم. شما می تونی کد هر ویدیو رو بطور جداگانه از گوگل درایو من به آدرس زیر دانلود کنی: drive.google.com/drive/folders/1-7yxcskfrwHi6aPXaujAnVdR2kHd8yXq هر سوال دیگری که داشته باشی من در خدمتم.
Thanks for reaching out. Try the following in your ConfigureServices method of the Startup class in the api project: services.AddCors(options => { options.AddPolicy(name: "AllowBlazorOrigin", builder => { builder.WithOrigins("localhost:53555", "localhost:44380", "localhost:5000", "localhost:5001") //.AllowAnyHeader() //.AllowAnyMethod() .WithHeaders("Content-Type"); }); }); Change the addresses based on yours and let me know if you need more help. Regards, Roozbeh
Great vid.👍😁 I'm a bit new to blazor web assembly. In the 4:50 of the vid, Can a web assembly consume multiple Web Api base addresses? Let's say the app is consuming 1 web api from amazon and another web api from Microsoft. Is that possible? Thanks.
Thanks @qutiephoebe2154 and sorry for such late reply. Yes, you can. You just need to register each one with the DI container as we did in the video and use each one whenever needed. If you need more help let me know. Regards, Roozbeh
Thanks Julian for your positive comment. If you're interested in the upcoming videos and you haven't subscribed yet, please do it to get notified of the new ones. Thanks, Roozbeh Shad
Thanks Jay for your support. I have plan to do it soon, but in the meantime you can get the source code on my google drive here: drive.google.com/drive/folders/1-7yxcskfrwHi6aPXaujAnVdR2kHd8yXq
Thank you so much for such a concise yet complete explanation. I couldn't find out why I couldn't consume my API. Turns out I completly forgot about CORS. Keep up the good work !
Good job bro. Very simple yet instructive. Just what I needed to get me off my journey in Blazor WASM
Thanks MrNoga1984. I’m happy you found it useful.
God bless you man!!! I was having a bad time with this blazor error in the bottom, you save all my work
Thanks. I'm glad it was helpful. Have you seen the latest video?
Good video 👍👍👍
You are my hero man for today :D
Thanks The Entein! I'm happy you liked it.
سلام اقای شاد .
تدریستون عالی هست ، و از ویدیوتون ممنونم .
میخواستم درخواست کنم یک ویدو بسازید در باره نحوه تعیین سطح دسترسی کاربران با نقش های مختلف به سطوح مختلخ .
authentication .
این مسئله رو زیاد دنبالش میگردم ولی چیزی که اصولی باشه رو پیدا نمیکنم .
از ویدو خوبتون هم متشکرم . ❤❤❤❤❤
از توجه مثبت شما سپاسگزارم. اتفاقن چیزی که راجع به سطوح مختلف دسترسی اشاره کردید یکی از برنامه های آموزشی مورد نظر من هست که تهیه و ازائه کنم، ولی چون این مجموعه بر طبق یک روال منطقی و از پیش تعیین شده تدوین شده، ارائه این ویدیو در زمان حاظر در دستور کارم نیست. با این وجود مطمئنم که ویدیوهای بعدی را بسیار آموزنده، جذاب و مفید خواهید یافت.
@@RoozbehShad متشکرم ، منتظر ویدیو های بعدیتون هستم
Many thanks for sharing!
My pleasure!
Very useful, sepaas gozaaram
خواهش میکنم.
I'm glad you like it. If you're interested in this series, please subscribe to get notified of the upcoming videos.
@@RoozbehShad Indeed, be salamat
Good job
Thanks Jose.
Thank you so much!
You're welcome! Have you seen the latest video?
What about DELETE, PUT and POST operations sir?
Thanks for the video anyway!
کد این آموزش رو نیاز دارم، اگه امکانش هست برام بفرست
سلام امیر جان، ببخشید بخاطر تاخیر طولانی در ارسال این پاسخ. خیلی شلوغ بودم. شما می تونی کد هر ویدیو رو بطور جداگانه از گوگل درایو من به آدرس زیر دانلود کنی:
drive.google.com/drive/folders/1-7yxcskfrwHi6aPXaujAnVdR2kHd8yXq
هر سوال دیگری که داشته باشی من در خدمتم.
Get request works, but i have this samme error for Post request...
Thanks for reaching out. Try the following in your ConfigureServices method of the Startup class in the api project:
services.AddCors(options => {
options.AddPolicy(name: "AllowBlazorOrigin",
builder => {
builder.WithOrigins("localhost:53555",
"localhost:44380",
"localhost:5000",
"localhost:5001")
//.AllowAnyHeader()
//.AllowAnyMethod()
.WithHeaders("Content-Type");
});
});
Change the addresses based on yours and let me know if you need more help.
Regards,
Roozbeh
Good contens
I'm glad you liked it. I released a new video on the first day of the new year. Please watch and enjoy it!
Great vid.👍😁 I'm a bit new to blazor web assembly. In the 4:50 of the vid, Can a web assembly consume multiple Web Api base addresses?
Let's say the app is consuming 1 web api from amazon and another web api from Microsoft. Is that possible? Thanks.
Thanks
@qutiephoebe2154 and sorry for such late reply. Yes, you can. You just need to register each one with the DI container as we did in the video and use each one whenever needed. If you need more help let me know.
Regards,
Roozbeh
سلام روزبه جان
Muy util
Thanks Julian for your positive comment. If you're interested in the upcoming videos and you haven't subscribed yet, please do it to get notified of the new ones.
Thanks,
Roozbeh Shad
Background music is annoying.
great video! could you upload the source code to github please?
Thanks Jay for your support. I have plan to do it soon, but in the meantime you can get the source code on my google drive here: drive.google.com/drive/folders/1-7yxcskfrwHi6aPXaujAnVdR2kHd8yXq