I am using Symfony 4 as Restful API, I was working perfectly with calling the api from a VueJS application. Today, I needed to add an another resource on the api but when I want to call it to get data from Vuejs I get "No 'Access-Control-Allow-Origin' header is present on the requested resource". Only for this entity, for the others it's working.
Symfony 4 api Restful No 'Access-Control-Allow-Origin' header is present on the requested resource, only for one resource
8.4k Views Asked by Y.Coding At
1
There are 1 best solutions below
Related Questions in SYMFONY
- Key provided is shorter than 256 bits, only 64 bits provided
- Troubleshooting form submission in PrestaShop's hookDisplayAdminProductsExtra module
- Symfony Framework - Route cannot be found even if it is defined in Controller
- Opening modal through Update button with specified ID using ajax
- Can't revert a Loggable entity because of a Doctrine repository error
- Symfony form type option issues
- How to redirect all shopware logs (monolog) including plugins (bundles) to single target like a file or stderr
- Serialization Symfony return empty array
- scheb/2fa not detected/working on my project
- Dynamically Adding Serialization Groups to Properties in Symfony 6.4 Using Traits
- symfony No identifier/primary key specified for Entity "App\Entity\Etablissement"
- Symfony basic auth doesn't work specifically in test
- Laravel 11 upgrade with Laravel Nova v.26.4 and Symfony/finder 7
- Does Symfony need the user to be online inorder to handle messages in the messenger queue?
- How to temporary disable Xdebug for cache/container building code, but that it remains enabled for the rest of the execution?
Related Questions in CORS
- Composer installation fails and reverts ./composer.json and ./composer.lock to original content
- "(Reason: CORS header ‘Access-Control-Allow-Origin’ missing)" while trying to access Actix webserver from Wix site
- Why I am facing an Origin error despite having included the header in the code?
- Nextjs fetching data from child component
- Transitioning from Static to Dynamic Data in React with Express Backend
- CORS policy defined in next.config.js doesn't seem to be applied to API call
- CORS Err - Same origin is undefined in browser
- how to solve CORS problem whith local html three.js?
- XmlHttpRequest cannot load due to access control, but access is configured?
- problemas con los CORS en .net core 7 y angular 15
- Cross-Origin API calls with Laravel middleware
- Access control allow origin is undefined even though I am setting the header
- 400 Bad Request From React Axios Graphql SageX3
- CORS Error When Fetching File From Firebase Storage
- deploying a Node/React project in Vercel
Related Questions in SYMFONY4
- How to output instance of DC2Type:array
- Prefix routes with dynamic locale depending on user preferences - symfony 4
- Shopware 6 Plugin: How to Implement Custom Fields for Customers?
- EasyAdmin: is there any way to have entity's fileds when calling setTemplatePath method in easyadmin?
- Multiple conditional count in one to many data fetching with Doctrine ORM
- API Platform serialization groups with multiple views
- After updating from 10.6 pimcore v to 11 version, facing version count issue
- Undefined constant "OCI_NO_AUTO_COMMIT"
- Failed to create object: error for Sonata_admin in Symfony 4
- Symfony service decoration, what does it actually mean?
- Validation password confirmation in Symfony
- MJML to HTML slow
- Uncaught PHP Exception LogicException: "Unable to add global "ea" as the runtime or the extensions
- Symfony: Calling a custom command from inside a controller
- Symfony - Attempted to load class "SonataDatagridBundle" from namespace "Sonata\DatagridBundle"?
Related Questions in NELMIOCORSBUNDLE
- NelmioCorsBundle with subdomain
- POST Request returns wrong Headers using Nelmio_Cors in Symfony
- CORS problem origins between React 18 and Symfony 6
- Should CORS be aware of endpoints method on preflight response?
- Allow access from every subdomain NelmioCorsBundle
- SYMFONY NELMIO CORS issue : Access-Control-Allow-Origin header contains multiple values
- CORS issue with Symfony 5 on Chrome
- Can't get Lexik JWT token from other domain
- Why CORS policy blocks request only when I dump?
- Symfony4. Missing ACAO headers only in static files
- I am using Nelmio_cors but I get a 500 error for POST requests even though I get a CORS-enabled response for GET requests
- No 'Access-Control-Allow-Origin' header is present on the requested resource Symfony
- No ‘Access-Control-Allow-Origin’ header is present on the requested resource
- How can I load class nelmiocorsbundle in symfony 4.2
- CORS Issue with PHP/Symfony API Nelmio
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

Your problem is related to CORS:
One of the possible solutions can be installing NelmioCorsBundle. This will bring CORS handling directly to your application.
Another solution can be adding this header in your web server (How do I add Access-Control-Allow-Origin in NGINX?).