0
我正在使用oxwall插件。我陷入了一個問題。 我需要知道如何發送http請求到網址。 例如:在oxwall中發送http請求
1)在Joomla CMS的我們發送這樣的請求,
$http = new JHttp($options, $transport);
$response = $http->post($url, $data);
2)在Drupal,
$options = array(
'method' => 'POST',
'data' => $data,
'timeout' => 15,
'headers' => array('Content-Type' => 'application/json'),
);
$result = drupal_http_request($url, $option);
我想知道,是什麼做的oxwall方式這個任務,請幫助我或者提示我哪個庫需要注意。如果我找不到解決方案,可以使用自定義的PHP代碼發送請求。它會影響插件的性能嗎?
爲什麼不使用捲曲? – Guns
是的,我可以使用捲曲,但必須有一些oxwall的方式來做到這一點。我的第一要務是使用oxwall的內置功能。我將使用自定義的PHP代碼,如果我不會找到方式。 – NeiL
也許這(http://stackoverflow.com/questions/21813776/404-error-with-restler-for-all-url)發佈會幫助 – Guns