Closed razeta closed 1 year ago
I suppose the HTTPS link is generated because your app works over the HTTPS protocol. If you're using Symfony built-in web server, i.e. run your app with symfony serve
command, pass the --no-tls
option to it, i.e. run symfony serve --no-tls
and it will be served via HTTP, and the generateSignature()
will return you HTTP link too.
I'm closing it because mostly this question is not about this specific bundle but about the Symfony application in general, you just need to run the app though HTTP as I mentioned above. Another workaround is to skip protocol checking in your tests, or just replace HTTPS with HTTP in that link in case you just checking the link without opening it
Hello, I want to generate the signature without https, is this posible? I'm doing testing and I don't want to pay for https service yet.
Thanks.