Problem with point in passage of post parameter in the slim framework

0

My webService uses the slim framework and works correctly using this request:

http://localhost:8000/wsrf/cadastrarFarmaciasPlantao/TESTEA/38410101/38410202/38410303/35172062/Rua X/email@emailcom/site/2015-10-15/IMAGEM01JPG

But if I add a period in the email or the extension of the image stops working

http://localhost:8000/wsrf/cadastrarFarmaciasPlantao/TESTEA/38410101/38410202/38410303/35172062/Rua X/[email protected]/site/2015-10-15/IMAGEM01.JPG

Does anyone know the cause?

Request php header:

$app->post("/cadastrarFarmaciasPlantao/:nome/:telefone/:telefone2/:telefone3/:cep/:endereco/:email/:site/:data/:imagem", 
        function ($nome,$telefone,$telefone2,$telefone3,$cep,$endereco,$email,$site,$data,$imagem) 
    
asked by anonymous 21.12.2015 / 02:53

1 answer

-1

Thanks for the reply, but my problem was with. I did not have any problems with the

I solved my problem by opting to pass the parameter through the header instead of the url.

    
22.12.2015 / 04:34