# WGETHEADER
Updated: 1/19/2021, 8:38:14 PM
Created: 1/19/2021, 8:38:14 PM
Last Updated By: Ryan Medina
Read Time: 1 minute(s)
The WGETHEADER
subroutine allows you retrieve headers sent by the client.
# WGETHEADER Syntax
CALL WGETHEADER(HEADERVALUE,HEADERNAME)
1
# Syntax Elements
Parameter | Description |
---|---|
HEADERVALUE | This is the returned value of the header. |
HEADERNAME | Set to the name of the header you want. |
# WGETHEADER Example
CALL WGETHEADER(TOKEN,"Token")
* TOKEN will have the passed header
1
2
2