I have developed API using Micro. In routes.php i have used Micro Collection to pass the request to Controllers like:
$collection = new \Phalcon\Mvc\Micro\Collection();
$collection->setHandler('\App\Controllers\V2', true);
$collection->post('/login', 'login');
$app->mount($usersCollection);
Controller login function checks if userkey & password is right. I have used
$request = $this->request->getQuery();
to get the requests in login function. If in userkey, i pass # character then all other characters after # are omitted & not received in conroller login function.
Is there anything that i need to do to receive every request data if there is # in there. Any help is appreciated.