Browser tools

Drupal modules

  • The function drupal_http_request() is part of Drupal core.
    You can simple use some custom code such as this:
    $account = array(
      'name' => 'test_user',
      'pass' => 'xyzzy',
      'mail' => 'test_user@xyzzy.com',
    );
    $response = drupal_http_request($url, $headers, 'POST', http_build_query($account, '', '&'));
    
  • The HTTP Client module provides a client library for Drupal that is designed to work with Services.
  • There is also the Web service Client module providing a nice interface.

Command line

If you prefer working from the command line, you can also use CURL. See this starter tutorial

Comments

monaw’s picture

In case anyone else cares, according to https://www.drupal.org/node/2237183#comment-9114579, Firefox Poster has known problems with Services...