веб-API?
На хостинге от Reg.ru не получается по этому руководству:
https://docs.microsoft.com/ru-ru/aspnet/web-api/overview/security/enabling-cross-origin-requests-in-web-api
Выдает: Access to XMLHttpRequest at 'https://bot.xxxxx.ru/api/test/' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Показывай настройки cors.
config.EnableCors(); в WebApiConfig и [EnableCors(origins: "http://mywebclient.azurewebsites.net", headers: "*", methods: "*")] public class TestController : ApiController {
Обсуждают сегодня