Santiago Diaz
Santiago Diaz
I would add an example using VichUploaderBundle.
This is an issue of WSSE and Symfony, as you may deactivate the SALT on password storage. Without the salt you cannot create a Token on client side.
You can secure and remove the salt from symfony2. When you exchange the WSSE token, the password is passed hardly encrypted in the generated token, so the salt is not...
In real projects using WSSE, what I do is to return the user object on POST user create, so the client app get the Salt. The other thing is to...
You can also check how it's done in OROPlatform, they use an additional token to use instead of passwd/Salt combination in the firewall
Try now
The pattern applied is an example, you could for example replace wsse_secured: pattern: ^/api/v1/(?!tokens|salt)([a-z0-9]+)$ And then SALT resource and TOKENS will be available without authentication. The thing is that POST...
I have merged (ad44506)
Are you using reactotron with .configure({host: .... })? In my case, I must develop with physical device, and when using host, sagas start raising errors like that. So I have...
Are you planning to use for example RabbitMQBundle to create workers in order to deal with a hugh amount of notifications?