1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created by GNU Texinfo 6.7, http://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>WWW Access (GNU Octave (version 6.2.0))</title>
<meta name="description" content="WWW Access (GNU Octave (version 6.2.0))">
<meta name="keywords" content="WWW Access (GNU Octave (version 6.2.0))">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<link href="index.html" rel="start" title="Top">
<link href="Concept-Index.html" rel="index" title="Concept Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Networking-Utilities.html" rel="up" title="Networking Utilities">
<link href="Base64-and-Binary-Data-Transmission.html" rel="next" title="Base64 and Binary Data Transmission">
<link href="FTP-Objects.html" rel="prev" title="FTP Objects">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.no-bullet {list-style: none}
-->
</style>
<link rel="stylesheet" type="text/css" href="octave.css">
</head>
<body lang="en">
<span id="WWW-Access"></span><div class="header">
<p>
Next: <a href="Base64-and-Binary-Data-Transmission.html" accesskey="n" rel="next">Base64 and Binary Data Transmission</a>, Previous: <a href="FTP-Objects.html" accesskey="p" rel="prev">FTP Objects</a>, Up: <a href="Networking-Utilities.html" accesskey="u" rel="up">Networking Utilities</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<span id="WWW-Access-1"></span><h4 class="subsection">36.4.2 WWW Access</h4>
<p>Octave can communicate with websites across the Internet. The <code>web</code>
function will launch an external web browser to interactively view a site. The
remaining functions—<code>urlread</code>, <code>urlwrite</code>, <code>webread</code>,
<code>webwrite</code>—are internal Octave functions which can import or export
data to/from Octave and a website identified by a URL (Uniform Resource
Locator).
</p>
<span id="XREFweb"></span><dl>
<dt id="index-web">: <em><var>status</var> =</em> <strong>web</strong> <em>()</em></dt>
<dt id="index-web-1">: <em><var>status</var> =</em> <strong>web</strong> <em>(<var>url</var>)</em></dt>
<dt id="index-web-2">: <em><var>status</var> =</em> <strong>web</strong> <em>(<var>url</var>, <var>option</var>)</em></dt>
<dt id="index-web-3">: <em><var>status</var> =</em> <strong>web</strong> <em>(<var>url</var>, <var>option_1</var>, …, <var>option_N</var>)</em></dt>
<dt id="index-web-4">: <em>[<var>status</var>, <var>h</var>, <var>url</var>] =</em> <strong>web</strong> <em>(…)</em></dt>
<dd>
<p>Open <var>url</var> in the default system web browser.
</p>
<p>With no arguments given, the address <a href="https://www.octave.org">https://www.octave.org</a> is
opened.
</p>
<p>Additional options can be passed for <small>MATLAB</small> compatibility, but are
ignored.
</p>
<ul>
<li> ‘<samp>-browser</samp>’ Open <var>url</var> in the default system browser.
</li><li> ‘<samp>-new</samp>’ No effect on the system browser.
</li><li> ‘<samp>-noaddressbox</samp>’ No effect on the system browser.
</li><li> ‘<samp>-notoolbar</samp>’ No effect on the system browser.
</li></ul>
<p>The return value <var>status</var> has one of the values:
</p>
<ul>
<li> ‘<samp>0</samp>’ Found and opened system browser successfully.
</li><li> ‘<samp>1</samp>’ Cannot find the system browser.
</li><li> ‘<samp>2</samp>’ System browser found, but an error occurred.
</li></ul>
<p>The return values <var>handle</var> and <var>url</var> are currently unimplemented
but given for compatibility.
</p>
<p><strong>See also:</strong> <a href="#XREFweboptions">weboptions</a>, <a href="#XREFwebread">webread</a>, <a href="#XREFwebwrite">webwrite</a>, <a href="#XREFurlread">urlread</a>, <a href="#XREFurlwrite">urlwrite</a>.
</p></dd></dl>
<span id="XREFurlread"></span><dl>
<dt id="index-urlread">: <em><var>s</var> =</em> <strong>urlread</strong> <em>(<var>url</var>)</em></dt>
<dt id="index-urlread-1">: <em>[<var>s</var>, <var>success</var>] =</em> <strong>urlread</strong> <em>(<var>url</var>)</em></dt>
<dt id="index-urlread-2">: <em>[<var>s</var>, <var>success</var>, <var>message</var>] =</em> <strong>urlread</strong> <em>(<var>url</var>)</em></dt>
<dt id="index-urlread-3">: <em>[…] =</em> <strong>urlread</strong> <em>(<var>url</var>, <var>method</var>, <var>param</var>)</em></dt>
<dd><p>Download a remote file specified by its <var>url</var> and return its content
in string <var>s</var>.
</p>
<p>For example:
</p>
<div class="example">
<pre class="example">s = urlread ("ftp://ftp.octave.org/pub/README");
</pre></div>
<p>The variable <var>success</var> is 1 if the download was successful,
otherwise it is 0 in which case <var>message</var> contains an error
message.
</p>
<p>If no output argument is specified and an error occurs, then the error is
signaled through Octave’s error handling mechanism.
</p>
<p>This function uses libcurl. Curl supports, among others, the HTTP, FTP, and
FILE protocols. Username and password may be specified in the URL. For
example:
</p>
<div class="example">
<pre class="example">s = urlread ("http://user:password@example.com/file.txt");
</pre></div>
<p>GET and POST requests can be specified by <var>method</var> and <var>param</var>.
The parameter <var>method</var> is either ‘<samp>get</samp>’ or ‘<samp>post</samp>’ and
<var>param</var> is a cell array of parameter and value pairs.
For example:
</p>
<div class="example">
<pre class="example">s = urlread ("http://www.google.com/search", "get",
{"query", "octave"});
</pre></div>
<p><strong>See also:</strong> <a href="#XREFurlwrite">urlwrite</a>.
</p></dd></dl>
<span id="XREFurlwrite"></span><dl>
<dt id="index-urlwrite">: <em></em> <strong>urlwrite</strong> <em>(<var>url</var>, <var>localfile</var>)</em></dt>
<dt id="index-urlwrite-1">: <em><var>f</var> =</em> <strong>urlwrite</strong> <em>(<var>url</var>, <var>localfile</var>)</em></dt>
<dt id="index-urlwrite-2">: <em>[<var>f</var>, <var>success</var>] =</em> <strong>urlwrite</strong> <em>(<var>url</var>, <var>localfile</var>)</em></dt>
<dt id="index-urlwrite-3">: <em>[<var>f</var>, <var>success</var>, <var>message</var>] =</em> <strong>urlwrite</strong> <em>(<var>url</var>, <var>localfile</var>)</em></dt>
<dd><p>Download a remote file specified by its <var>url</var> and save it as
<var>localfile</var>.
</p>
<p>For example:
</p>
<div class="example">
<pre class="example">urlwrite ("ftp://ftp.octave.org/pub/README",
"README.txt");
</pre></div>
<p>The full path of the downloaded file is returned in <var>f</var>.
</p>
<p>The variable <var>success</var> is 1 if the download was successful,
otherwise it is 0 in which case <var>message</var> contains an error message.
</p>
<p>If no output argument is specified and an error occurs, then the error is
signaled through Octave’s error handling mechanism.
</p>
<p>This function uses libcurl. Curl supports, among others, the HTTP, FTP, and
FILE protocols. Username and password may be specified in the URL, for
example:
</p>
<div class="example">
<pre class="example">urlwrite ("http://username:password@example.com/file.txt",
"file.txt");
</pre></div>
<p>GET and POST requests can be specified by <var>method</var> and <var>param</var>.
The parameter <var>method</var> is either ‘<samp>get</samp>’ or ‘<samp>post</samp>’ and
<var>param</var> is a cell array of parameter and value pairs.
For example:
</p>
<div class="example">
<pre class="example">urlwrite ("http://www.google.com/search", "search.html",
"get", {"query", "octave"});
</pre></div>
<p><strong>See also:</strong> <a href="#XREFurlread">urlread</a>.
</p></dd></dl>
<span id="XREFwebread"></span><dl>
<dt id="index-webread">: <em><var>response</var> =</em> <strong>webread</strong> <em>(<var>url</var>)</em></dt>
<dt id="index-webread-1">: <em><var>response</var> =</em> <strong>webread</strong> <em>(<var>url</var>, <var>name1</var>, <var>value1</var>, …)</em></dt>
<dt id="index-webread-2">: <em><var>response</var> =</em> <strong>webread</strong> <em>(…, <var>options</var>)</em></dt>
<dd>
<p>Read content from RESTful web service.
</p>
<p>Read content from the web service specified by <var>url</var> and return the
content in <var>response</var>.
</p>
<p>All key-value pairs given (<var>name1</var>, <var>value1</var>, …) are appended
as query parameters to <var>url</var>. To place a query in the body of the
message, use <code>webwrite</code>. The web service defines the acceptable query
parameters.
</p>
<p><var>options</var> is a <code>weboptions</code> object that may be used to add other
HTTP request options. This argument can be used with either calling form.
See <code>help weboptions</code> for a complete list of supported HTTP options.
</p>
<p><strong>See also:</strong> <a href="#XREFweboptions">weboptions</a>, <a href="#XREFwebwrite">webwrite</a>.
</p></dd></dl>
<span id="XREFwebwrite"></span><dl>
<dt id="index-webwrite">: <em><var>response</var> =</em> <strong>webwrite</strong> <em>(<var>url</var>, <var>name1</var>, <var>value1</var>, …)</em></dt>
<dt id="index-webwrite-1">: <em><var>response</var> =</em> <strong>webwrite</strong> <em>(<var>url</var>, <var>data</var>)</em></dt>
<dt id="index-webwrite-2">: <em><var>response</var> =</em> <strong>webwrite</strong> <em>(…, <var>options</var>)</em></dt>
<dd>
<p>Write data to RESTful web services.
</p>
<p>Write content to the web service specified by <var>url</var> and return the
response in <var>response</var>.
</p>
<p>All key-value pairs given (<var>name1</var>, <var>value1</var>, …) are added
as pairs of query parameters to the body of request method (<code>get</code>,
<code>post</code>, <code>put</code>, etc.).
</p>
<p><var>options</var> is a <code>weboptions</code> object that may be used to add other
HTTP request options. This argument can be used with either calling form.
See <code>help weboptions</code> for a complete list of supported HTTP options.
</p>
<p><strong>See also:</strong> <a href="#XREFweboptions">weboptions</a>, <a href="#XREFwebread">webread</a>.
</p></dd></dl>
<span id="XREFweboptions"></span><dl>
<dt id="index-weboptions">: <em><var>output</var> =</em> <strong>weboptions</strong> <em>()</em></dt>
<dt id="index-weboptions-1">: <em><var>output</var> =</em> <strong>weboptions</strong> <em>(<var>name1</var>, <var>value1</var>, …)</em></dt>
<dd>
<p>Specify parameters for RESTful web services.
</p>
<p><code>weboptions</code> with no inputs returns a default <code>weboptions</code> object
to specify parameters for a request to a web service. A <code>weboptions</code>
object can be an optional input argument to the <code>webread</code> and
<code>webwrite</code> functions.
</p>
<p>Multiple name and value pair arguments may be specified in any order as
<var>name1</var>, <var>value1</var>, <var>name2</var>, <var>value2</var>, etc.
</p>
<p>The option names must match <strong>exactly</strong> one of those specified in the
table below.
</p>
<p>The following options are available:
</p>
<ul>
<li> ‘<samp>CharacterEncoding</samp>’ — Specify the character encoding of the data:
<p>‘<samp>auto</samp>’ (default), ‘<samp>UTF-8</samp>’, ‘<samp>US-ASCII</samp>’
‘<samp>auto</samp>’ chooses an encoding based on the content-type of the data.
</p>
</li><li> ‘<samp>UserAgent</samp>’ — Specify the User Agent for the connection.
<p>Default value is ‘<samp>GNU Octave/version</samp>’, where ‘<samp>version</samp>’ is the
current version of Octave as returned by <code>version</code>.
</p>
</li><li> ‘<samp>Timeout</samp>’ — Specify the timeout value for the connection in seconds.
<p>Default is 10 seconds. ‘<samp>Inf</samp>’ is not currently supported.
</p>
</li><li> ‘<samp>Username</samp>’ — User identifier for a basic HTTP connection.
<p>Default is NULL. It must be a string.
</p>
</li><li> ‘<samp>Password</samp>’ — User authentication password for HTTP connection.
<p>Default is NULL. It must be a string or character vector.
Programming Note: If you display a <code>weboption</code> object with the Password
property set, the value is displayed as a string containing
<code>'*'</code>. However, the object stores the value of the Password
property as plain text.
</p>
</li><li> ‘<samp>KeyName</samp>’ — Specify the name of an additional key to be added to
the HTTP request header. It should be coupled with ‘<samp>KeyValue</samp>’. It
must be a string or character vector.
</li><li> ‘<samp>KeyValue</samp>’ — Specify the value of the key ‘<samp>KeyName</samp>’.
<p>‘<samp>KeyName</samp>’ must be present in order to assign to this field.
</p>
</li><li> ‘<samp>HeaderFields</samp>’ — Specify the header fields for the
connection.
<p>Names and values of header fields, specified as an m-by-2 array of strings
or cell array of character vectors to add to the HTTP request header.
HeaderFields{i,1} is the name of a field and
HeaderFields{i,2} is its value.
</p>
<div class="example">
<pre class="example">weboptions ("HeaderFields", {"Content-Length" "78";"Content-Type" "application/json"})
Creates a weboptions object that contains two header fields: Content-Length
with value 78 and Content-Type with value application/json.
</pre></div>
</li><li> ‘<samp>ContentType</samp>’ — Specify the content type of the data.
<p>The following values are available:
‘<samp>auto</samp>’, ‘<samp>text</samp>’, ‘<samp>json</samp>’
</p>
<p>Default is ‘<samp>auto</samp>’. It automatically determines the content type.
All other formats like ‘<samp>audio</samp>’, ‘<samp>binary</samp>’, etc. available in
<small>MATLAB</small> are not currently supported.
</p>
</li><li> ‘<samp>ContentReader</samp>’ — Not yet implemented. Only for <small>MATLAB</small>
compatibility.
</li><li> ‘<samp>MediaType</samp>’ — Not yet implemented. Only for <small>MATLAB</small>
compatibility.
</li><li> ‘<samp>RequestMethod</samp>’ — Specifies the type of request to be made.
<p>The following methods are available:
‘<samp>get</samp>’, ‘<samp>put</samp>’, ‘<samp>post</samp>’, ‘<samp>delete</samp>’, ‘<samp>patch</samp>’
</p>
<p><code>webread</code> uses the HTTP GET method. <code>webwrite</code> uses the HTTP POST
method as default.
</p>
</li><li> ‘<samp>ArrayFormat</samp>’ – Not yet implemented. Only for <small>MATLAB</small>
compatibility.
</li><li> ‘<samp>CertificateFilename</samp>’ — Not yet implemented. Only for <small>MATLAB</small>
compatibility.
</li></ul>
<p><strong>See also:</strong> <a href="#XREFwebread">webread</a>, <a href="#XREFwebwrite">webwrite</a>.
</p></dd></dl>
<hr>
<div class="header">
<p>
Next: <a href="Base64-and-Binary-Data-Transmission.html" accesskey="n" rel="next">Base64 and Binary Data Transmission</a>, Previous: <a href="FTP-Objects.html" accesskey="p" rel="prev">FTP Objects</a>, Up: <a href="Networking-Utilities.html" accesskey="u" rel="up">Networking Utilities</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
</div>
</body>
</html>
|