{"id":655,"date":"2023-10-07T11:57:30","date_gmt":"2023-10-07T17:57:30","guid":{"rendered":"https:\/\/kop.lat\/blog\/?p=655"},"modified":"2023-10-07T11:57:30","modified_gmt":"2023-10-07T17:57:30","slug":"cors-configuration-in-webapi-c-dotnet","status":"publish","type":"post","link":"https:\/\/kop.lat\/blog\/cors-configuration-in-webapi-c-dotnet\/","title":{"rendered":"CORS configuration in webapi, c# dotnet"},"content":{"rendered":"\n<p>in Program.cs <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"dm-code-snippet dark dm-normal-version default no-background-mobile\" snippet-height=\"\" style=\"background-color:#abb8c3\"><div class=\"control-language\"><div class=\"dm-buttons\"><div class=\"dm-buttons-left\"><div class=\"dm-button-snippet red-button\"><\/div><div class=\"dm-button-snippet orange-button\"><\/div><div class=\"dm-button-snippet green-button\"><\/div><\/div><div class=\"dm-buttons-right\"><a id=\"dm-copy-raw-code\"><span class=\"dm-copy-text\">Copy Code<\/span><span class=\"dm-copy-confirmed\" style=\"display:none\">Copied<\/span><span class=\"dm-error-message\" style=\"display:none\">Use a different Browser<\/span><\/a><\/div><\/div><pre class=\" no-line-numbers\"><code id=\"dm-code-raw\" class=\" no-wrap language-clike\">\/\/ CORS configuration here\n\/\/ allowing requests from all origins\napp.UseCors(builder => builder\n    \/\/.WithOrigins(\"http:\/\/localhost.com:5116\") \n    .AllowAnyOrigin()\n    \/\/.WithHeaders(\"Content-Type\", \"Authorization\")\n    .AllowAnyHeader()\n    \/\/.WithMethods(\"GET\", \"POST\")\n    .AllowAnyMethod()\n);<\/code><\/pre><\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>in Program.cs<\/p>\n","protected":false},"author":1,"featured_media":253,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[39,41,51,52,40,111],"tags":[53,54],"_links":{"self":[{"href":"https:\/\/kop.lat\/blog\/wp-json\/wp\/v2\/posts\/655"}],"collection":[{"href":"https:\/\/kop.lat\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kop.lat\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kop.lat\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kop.lat\/blog\/wp-json\/wp\/v2\/comments?post=655"}],"version-history":[{"count":1,"href":"https:\/\/kop.lat\/blog\/wp-json\/wp\/v2\/posts\/655\/revisions"}],"predecessor-version":[{"id":656,"href":"https:\/\/kop.lat\/blog\/wp-json\/wp\/v2\/posts\/655\/revisions\/656"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kop.lat\/blog\/wp-json\/wp\/v2\/media\/253"}],"wp:attachment":[{"href":"https:\/\/kop.lat\/blog\/wp-json\/wp\/v2\/media?parent=655"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kop.lat\/blog\/wp-json\/wp\/v2\/categories?post=655"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kop.lat\/blog\/wp-json\/wp\/v2\/tags?post=655"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}