I'm using an ancient API, that sends the result over GET method to my app. So user will redirect to my action with a url like that:
http://example.com/api/result?request=102&state=1
It's doesn't look like nice.. also I don't want the user knows his request and state (which the API sends by GET and I can't set it to post them)
Can CakePHP get the query string and store it in session then removes it from url? automatically...