get('guzzle.service_builder'); $client = $serviceBuilder->get('twitter'); //$command = $client->getCommand('pingtest'); $command = $client->getCommand('search', array( 'screen_name'=>'renoirb', 'size'=>'original' )); $execution = $client->execute($command); $test = $command->getRequest()->getUrl(); throw new \Exception('The full URL to request would be '.print_r($test,1)); return array( 'twitter'=> array() ); } // ... }