We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I ran this project successfully but met TypeError when I test api, I am using a macbook air m1, no code is modified, so I was confused
The text was updated successfully, but these errors were encountered:
plus, response is fine when I use curl in cmd
Sorry, something went wrong.
I found a way to sovle this problem https://github.com/oatpp/oatpp/blob/master/changelog/1.2.5.md#enable-global-cors enable cors for this example
OATPP_CREATE_COMPONENT(std::shared_ptr<oatpp::network::ConnectionHandler>, serverConnectionHandler)([] { OATPP_COMPONENT(std::shared_ptr<oatpp::web::server::HttpRouter>, router); // get Router component OATPP_COMPONENT(std::shared_ptr<oatpp::data::mapping::ObjectMapper>, objectMapper); // get ObjectMapper component auto connectionHandler = oatpp::web::server::HttpConnectionHandler::createShared(router); connectionHandler->setErrorHandler(std::make_shared<ErrorHandler>(objectMapper)); /* Add CORS-enabling interceptors */ connectionHandler->addRequestInterceptor(std::make_shared<oatpp::web::server::interceptor::AllowOptionsGlobal>()); connectionHandler->addResponseInterceptor(std::make_shared<oatpp::web::server::interceptor::AllowCorsGlobal>()); return connectionHandler; }());
No branches or pull requests
I ran this project successfully but met TypeError when I test api,
I am using a macbook air m1, no code is modified, so I was confused
The text was updated successfully, but these errors were encountered: