ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / HTTP functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns the value of a cookie received further to an HTTP request.
Remark: The cookies read and sent by HTTPRequest are only stored in memory in the application. They are not related to the cookies of Web browsers installed on the computer.
Example
// Performs an HTTP request
HTTPRequest("www.mysite.com")
// Displays the identification cookie returned by the server
sID is string = HTTPCookieRead(".mysite.com", "ID")
Info("Identification cookie = " + sID)
Syntax

Syntax that can be used with HTTPRequest Hide the details

<Result> = HTTPCookieRead(<Domain> , <Name>)
<Result>: Character string
  • Value of cookie.
  • Empty string ("") if the cookie does not exist. In this case, the ErrorOccurred variable is set to True.
<Domain>: Character string
Name of the domain for which the cookie was received.
<Name>: Character string
Cookie name.
WINDEVWEBDEV - Server codeAndroidAndroid Widget iPhone/iPadAjax

Syntax that can be used with HTTPSend Hide the details

<Result> = HTTPCookieRead(<HTTP request> , <Domain> , <Name>)
<Result>: Character string
  • Value of cookie.
  • Empty string ("") if the cookie does not exist. In this case, the ErrorOccurred variable is set to True.
<HTTP request>: httpRequest variable
Name of the httpRequest variable for which the cookie will be read.
<Domain>: Character string
Name of the domain for which the cookie was received.
<Name>: Character string
Cookie name.
Remarks
To use HTTPCookieRead, the management of cookies must have been enabled by HTTPCookieManage.
Component: wd290com.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help