Skip to content
Advertisement

How to make a single endpoint operation public in API Platform?

In API Platform, I have all the endpoints secured with JWT but I would like to have the POST User public so users can register themselves.

How can I do this at entity level?

JavaScript

if I implement this in security.yaml as usual in Symfony it works

JavaScript

I just would like to know if I can do it at entity level with annotations.

Advertisement

Answer

The Api-Platform security rules are processed after Symfony’s Security access rules.

So if Symfony’s access rules are stricter than Api-Platform’s rules, those apply and the request will be denied.

If if were the other way around (security.access_rules declared the endpoint “open”, but on your resource configuration you declared a more stringent is_granted() configuration), it would work, since then request would go past the Symfony firewall and reach the Api-Platform access listener.

For you to be able to configure security with attributes/annotations, then the security configuration needs to be more restrictive than the one on the Symfony firewall.

E.g. set / to PUBLIC_ACCESS, and then configure security with the corresponding is_granted() on each resource.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement