Multiple-XMLHttpRequest is a tools to send multiple request in few clicks.
INPUT | Description | Example |
---|---|---|
METHOD | GET/POST/PUT/DELETE | GET |
Data | csv/xlsx file with data | CSV FILE with datas: a,b,c v1,v2,v3 v1,v3,v4 |
URL | target server url | "http://example.com" |
Result | send multiple request | Send the following request : http://example.com?a=v1&b=v2&c=v3 http://example.com?a=v1&b=v3&c=v4 |
Some browser may block the Cross-Domain request due to security issue. To use this system, you need to enable the Allow-Control-Allow-Origin: * , by installing this extention
Go to this website
You can try the peogram with following example:
INPUT:
- SELECT "GET" Method
- INPUT https://en.wikipedia.org/w/api.php to text filed
- import the CSV.
OUTPUT: It will send a "GET" request with the data inside csv file. ie. https://en.wikipedia.org/w/api.php?action=query&titles=Main%20Page&prop=revisions&rvprop=content&format=json&formatversion=2
This project is licensed under the MIT License - see the LICENSE.md file for details