I'm currently creating attempting to integrate with the Tapjoy API with their callback URL request which comes in this form:
<callback_url>?snuid=<user_id>¤cy=&mac_address=<mac_address>&display_multiplier=<display_multiplier>
However, using ZF1 -- the Zend_Controller_Router_Route seems to be dependent on the variable separation being delimited by slashes and not ampersands.
Here is my current Route code
> $router->addRoute( 'api-tapjoy', new Zend_Controller_Router_Route('api/tapjoy?snuid=:snuid&mac_address=:&mac_address&display_multiplier....etc.etc,
array('controller'=>'api', 'action' =>'tapjoy')));
Whenever I remove the ampersands and initial question mark and replace them with slashes it works. How can I properly receive the HTTP Request whilst using ampersands?