web-dev-qa-db-ja.com

テストエンドポイントを作成する方法

私はdrupalを初めて使用し、RESTおよびRESTWSモジュールを使用するためにサービスモジュールを使用しています。RESTWSを使用して、ノードのコンテンツを取得することができました- http://base_url/node/1.xml これで、外部からノードとユーザーを追加する必要がありますPHPアプリケーションをdrupalに追加しました。Googleで検索して、ここで見つけました http:// base_drupal_url/drupal7/test_endpoint/users を使用する必要があります。Drupal 7からサービスを作成しようとしましたが、何をすべきかわかりませんエンドポイントのタイトル、名前、エンドポイントパスを指定します。カールで同じエンドポイントパスを指定する必要があると思います。

RESTサーバーがインストールされているかどうかを確認する方法、およびエンドポイントパスを作成する方法に関するヘルプは、非常に役立ちます。

Drupal 7をサービスモジュールservices-7.x-3.0-rc3で使用しています。

28
sridhar

サービスモジュールは簡単に使用できますが、この概念に慣れていない場合は特に、設定が難しい場合があります。そこで、スクリーンショットを投稿して、「Drupal Answers」ユーザーがサービスモジュールを簡単に設定できるようにします。

以下は、私のマシンにインストールされているサービスモジュールのバージョンです:

enter image description here

次に示すように、「rest」というエンドポイントを作成します:

enter image description here

サーバーの種類とエンドポイントパスを選択します:

enter image description here

有効にするリソースのリストを選択し、エイリアスを指定します:

enter image description here

有効にする応答フォーマッターと要求パーサーを選択します:

enter image description here

以下のように構成をテストできます:

enter image description here

以下のようにすべてのノードのリストを取得できます:

enter image description here

そして特定のノードとして:

enter image description here

以下は MichaelCole が提供する優れたサンプルスクリプトです-=ここに http://drupal.org/node/910598#comment-4677738 外部からノードを作成するPHPアプリケーション。

この回答が完全になるように、私は彼のコードを複製しています。

//--------------login to the server------------------------
$service_url = 'http://example.dev/rest/user/login.xml'; // .xml asks for xml data in response
$post_data = array(
    'username' => 'test',
    'password' => 'test',
);
$post_data = http_build_query($post_data, '', '&'); // Format post data as application/x-www-form-urlencoded
// set up the request
$curl = curl_init($service_url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);  // have curl_exec return a string

curl_setopt($curl, CURLOPT_POST, true);             // do a POST
curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data); // POST this data
// make the request
curl_setopt($curl, CURLOPT_VERBOSE, true); // output to command line
$response = curl_exec($curl);
curl_close($curl);
print "LOGIN RESPONSE:\n";
var_dump($response);



// parse the response
$xml = new SimpleXMLElement($response);
$session_cookie = $xml->session_name . '=' . $xml->sessid;
// print "SESSION_COOKIE: $session_cookie";

file_put_contents('session_cookie.txt', $session_cookie);

//----------------create a node -------------------------------

$node_data = array(
    'type' => 'ct_metadata_core',
    'title' => 'test layer',
    'field_core_lat_n[und][0]' => array('value' => '90'),
    'field_core_lat_s[und][0]' => array('value' => '-90'),
    'field_core_long_e[und][0]' => array('value' => '180'),
    'field_core_long_w[und][0]' => array('value' => '-180'),
    'field_core_description[und][0]' => array('value' => 'National Data Buoy Center'),
    'field_core_originator[und][0]' => array('value' => 'NDBC'),
    'field_core_url[und][0]' => array('url' => 'http://www.ndbc.noaa.gov/kml/marineobs_as_kml.php?sort=pgm'),
    'field_cont_res_name_org[und][0]' => array('value' => 'test'),

);


$service_url = 'http://example.dev/rest/node'; // .xml asks for xml data in response
$session_cookie = file_get_contents('session_cookie.txt');

$node_data = http_build_query($node_data, '', '&'); // Format post data as application/x-www-form-urlencoded
// set up the request
$curl = curl_init($service_url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);  // have curl_exec return a string

curl_setopt($curl, CURLOPT_COOKIE, "$session_cookie"); // use the previously saved session

curl_setopt($curl, CURLOPT_POST, true);             // do a POST
curl_setopt($curl, CURLOPT_POSTFIELDS, $node_data); // POST this data
// make the request
curl_setopt($curl, CURLOPT_VERBOSE, true); // output to command line
$response = curl_exec($curl);
curl_close($curl);
print "CREATE NODE RESPONSE:\n";
var_dump($response);


//----------------logout from the server-------------------------

$service_url = 'http://example.dev/rest/user/logout';
$session_cookie = file_get_contents('session_cookie.txt');

// set up the request
$curl = curl_init($service_url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);  // have curl_exec return a string

curl_setopt($curl, CURLOPT_COOKIE, "$session_cookie"); // use the previously saved session
curl_setopt($curl, CURLOPT_POST, true);             // do a POST
curl_setopt($curl, CURLOPT_POSTFIELDS, ""); // POST this data
// make the request
curl_setopt($curl, CURLOPT_VERBOSE, true); // output to command line
$response = curl_exec($curl);
curl_close($curl);
print "LOGOUT RESPONSE:\n";
var_dump($response);
56

Creating a resource for Services 3.x をお勧めします。

また、サービスとRESTWSに互換性があるかどうかも確認しています。どちらも同じもののバリエーションを提供するため、競合する可能性があります。

6
Blake Senftner