i have problems with my Webservice i created in php with the Laravel Framework.
I have the following URL to call:
http://localhost:100/cust/server.php/InitialSync/{"IdCard": "lxpIu1bD4UX4W2h5EM+i6VEQUZk+i\/SJF1DU6179HBejWkOBENSflnTSN\/8N14OGTqh6fH\/6kNrjJCilCMIrVtrlUAyQ5y8zZXVy5K3XwMOGmlHghAe80Q=="}
So you see that i send a Json Object with an crypted IdCard to the Server. My route looks like that:
Route::get('InitialSync/{idCard}, 'SyncController@InitialSync'};
So Problem is that this won´t work. I think the Problems are the / in the JsonObject.
Does anyone of you know how i can solve this problem.
The Result from Laravel is:
Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException
I think he tries to find the Route but becouse of the / in the Json Object i get this error.