FullRequestURI returns the full URI, including the scheme, the host and the relative requested path/resource.
()
| 1100 | // FullRequestURI returns the full URI, |
| 1101 | // including the scheme, the host and the relative requested path/resource. |
| 1102 | func (ctx *Context) FullRequestURI() string { |
| 1103 | return ctx.AbsoluteURI(ctx.Path()) |
| 1104 | } |
| 1105 | |
| 1106 | // RemoteAddr tries to parse and return the real client's request IP. |
| 1107 | // |
no test coverage detected