Druapl 7:在邮递员中配置SSO IPB数据

时间:2017-07-05 08:52:26

标签: php drupal-7 single-sign-on postman ipb

我是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中配置?

0 个答案:

没有答案