By default the bundle configures every adapter to follow 5 redirections. But you can refine this value in order to match your project needs.
For example, if you want your application to follow 10 redirections, then you can use the following configuration:
widop_http_adapter:
max_redirects: 10
If you want to disable the redirect feature, simply set it to zero.
In order to use an adapter, you need to request the associated service:
$curlHttpAdapter = $this->container->get('widop_http_adapter.curl');
$streamHttpAdapter = $this->container->get('widop_http_adapter.stream');
$buzzHttpAdapter = $this->container->get('widop_http_adapter.buzz');
$guzzleHttpAdapter = $this->container->get('widop_http_adapter.guzzle');
$zendHttpAdapter = $this->container->get('widop_http_adapter.zend');
Each adapter allows you to make a GET or POST request. Everything is explained here.