我是Drupal 7的初学者,我使用的是SSO IPB;我有以下数据:
$url = 'http://myserver/my_sw';
$data = array(
'process' => 'my_method',
'email' => 'test@test.com',
'token_invisible' => '123456789',
'include_waiting_shops' => '1'
);
$options = array(
'method' => 'POST',
'data' => drupal_http_build_query($data),
'timeout' => 15,
'headers' => array('Content-Type' => 'application/x-www-form-urlencoded'),
);
如何在postman中配置?