--- version: 0.9.0 layout: refman --- nng_http_req_get_method(3http)

SYNOPSIS

#include <nng/nng.h>
#include <nng/supplemental/http/http.h>

const char *nng_http_req_get_method(nng_http_req *req);

DESCRIPTION

The nng_http_req_get_uri() returns the URI (path) associated with the HTTP the request req. The value returned includes the path, as well as any query information or fragment. The value will look like a filesystem path with those optional components appened, such as /api/get_info.cgi?name=garrett.

RETURN VALUES

Request URI as a string.

ERRORS

None.

SEE ALSO