HTTP/Get - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

Home : Support : Online Help : HTTP/Get

HTTP

  

Get

  

Retrieve a data from a URL using the HTTP GET method

 

Calling Sequence

Parameters

Options

Description

Examples

Compatibility

Calling Sequence

Get(URI, options)

Parameters

URI

-

host, port, and URL path of the form http://host:port/path/to/file?query; the uniform resource identifier

Options

• 

forcemode=name

either text or binary this forces the transfer to be done in the given mode regardless of the Content-Type reported by the server.

• 

headers=list

list of header values; duplicate values will be combined into a single comma-separated list.

• 

timeout=posint

the number of seconds to wait for data before timing out.

Description

• 

The Get command retrieves whatever information (in the form of an entity) is identified by the Request-URI.

• 

Currently, only text content types are supported.

• 

Get returns a sequence (code, content, headers) with code set to the return code sent by the server, content containing the body of the server response and the headers as a table.

Examples

(1)

(2)

(3)

(4)

(5)

(6)

Error, (in HTTP:-Get) cannot establish

Compatibility

• 

The HTTP[Get] command was introduced in Maple 15.

• 

For more information on Maple 15 changes, see Updates in Maple 15.

See Also

HTTP

HTTP[Code]

HTTP[Post]

 


Download Help Document