humanemulator.net — справка.
Продукт, демо и покупка — на
хуманэмулятор.рф
|
Демо
|
Купить
|
API
|
Changelog
request
request($method,$url,$resource,$query_parameters=null,$file_parameters=null); - Отправить запросВарианты значений для аргумента method:
'get', 'post', 'put', 'delete', 'head', 'options', 'patch', 'merge', 'copy', 'search'.
Функция на вход принимает параметры:
После выполнения функции возвращаемое значение будет равно одному из двух :
Пример использования
<?php // Scenario: Demonstrates how to make REST API requests using different HTTP methods (GET, POST, DELETE) $xhe_host = getenv("RPABOT_HOST_URL"); if (!isset($path)){ // Path to the init.php file for connecting to the XHE API $path = "../../../Templates/init.php"; // Including init.php grants access to all classes and functionality for working with the XHE API require($path); } // beginning echo "\n<font color=blue>rest->".basename (__FILE__)."</font>\n"; // Prepare parameters for requests $params = array( "test1" => "test1" , "test2" => "test2" ); // Example 1 echo "1. Send GET request : "; $method = "get"; $url = "http://httpbin.org"; $requestType = "get"; echo WEB::$rest->request($method, $url, $requestType, $params)."\n"; // Example 2 echo "\n\n2. Send POST request : "; $method = "post"; $url = "http://httpbin.org"; $requestType = "post"; echo WEB::$rest->request($method, $url, $requestType, $params)."\n"; // Example 3 echo "\n\n3. Send DELETE request : "; $method = "delete"; $url = "http://httpbin.org"; $requestType = "delete"; echo WEB::$rest->request($method, $url, $requestType, $params)."\n"; // end echo "\n"; // Quit the application WINDOW::$app->quit(); ?>
# Additional paths import sys sys.path.insert(0, '../../../Templates PY/') xhe_host = "127.0.0.1:3039" from xweb_human_emulator import * # начало echo("<hr><font color=blue>seo.xxxxxxxxx</font><hr>") params_ = { "test1" : "test1_", "test2" : "test2_"} # 1 echo("1. Отправить GET запрос : "); echo(rest.request("get","http://httpbin.org","get",params_),"<br>"); # 2 echo("\n\n2. Отправить POST запрос : "); echo(rest.request("post","http://httpbin.org","post",params_),"<br>"); # 3 echo("\n\n3. Отправить DELETE запрос : "); echo(rest.request("delete","http://httpbin.org","delete",params_),"<br>"); # конец echo("<hr><br>") # Quit app.quit()
#region using using System; using System.Diagnostics; using System.Collections.Generic; using System.Linq; using System.IO; using System.Text; using System.Threading; using XHE; using XHE.XHE_DOM; using XHE.XHE_System; using XHE.XHE_Window; using XHE.XHE_Web; #endregion class Program:XHEScript { static void Main(string[] args) { // init XHE server = Environment.GetEnvironmentVariable("RPABOT_HOST_URL"); InitXHE(); // начало echo("<hr><font color=blue>seo.get_alexa_rank</font><hr>"); var params_ = new Dictionary<string,string>(); params_["test1"] = "test1"; params_["test2"] = "test2"; // 1 echo("1. Отправить GET запрос : "); echo(rest.request("get","http://httpbin.org","get",params_)+"<br>"); // 2 echo("\n\n2. Отправить POST запрос : "); echo(rest.request("post","http://httpbin.org","post",params_)+"<br>"); // 3 echo("\n\n3. Отправить DELETE запрос : "); echo(rest.request("delete","http://httpbin.org","delete",params_)+"<br>"); // конец echo("\n\n"); app.quit(); } }
// подключим функциональные объекты, если еще не подключен xhe_host="127.0.0.1:3039"; echo=require("../../../Templates JS/init.js"); // начало echo("<hr><font color=blue>seo.get_all_outside_links</font><hr>"); var params_ = { "test1": 'test1', "test2": 'tes2', } // 1 echo("1. Отправить GET запрос : "); echo(rest.request("get","http://httpbin.org","get",params_)+"<br>"); // 2 echo("\n\n2. Отправить POST запрос : "); echo(rest.request("post","http://httpbin.org","post",params_)+"<br>"); // 3 echo("\n\n3. Отправить DELETE запрос : "); echo(rest.request("delete","http://httpbin.org","delete",params_)+"<br>"); // конец echo("\n"); // Quit app.quit();
=============================================
rest Объекты DOM System Vision Web Window
=============================================
если что-то непонятно или необходимо узнать или считаете что надо добавить по работе этой функции, пишите в комментарии или на наш форум
.