|
|
|
|
HTTPCookieReplace (Function) In french: HTTPCookieRemplace Replaces all the cookies stored for a domain: 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.
// Reloads the cookies saved during the previous session CookieInfo is string = fLoadText("MyYahooCookies.xml") MyCookies is array of Cookies Deserialize(MyCookies, CookieInfo, psdXML) // Replaces the cookie found in memory by the ones read in the file HTTPCookieManage(True) HTTPCookieReplace(".yahoo.com", MyCookies) // Performs an HTTP request HTTPRequest("www.yahoo.com")
Syntax
Replacing all cookies (HTTPRequest) Hide the details
HTTPCookieReplace(<Domain> , <Cookies>)
<Domain>: Character string Domain for which the array cookies will be used. <Cookies>: Array of Cookie variables New list of cookies that will be applied to the domain. Remarks The cookies for a domain are limited to 20 cookies of up to 4KB each.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|