Client HTTP requests
Hi all,
as far as I see, all the HTTP requests initiated from the flash client towards realmofthemadgodhrd.appspo*****m (e.g. /char/list or /dailyLogin/fetchCalendar) contains a POST field named 'ignore'. I couldn't find anything in the decompiled client about this parameter, which seems as a random integer to me at first.
Has anyone figured out what that parameter is for?
i wonder the same thing, i usually just delete the parameter.
Since we can't see the server's code, we can only assume it is used to ignore cached versions of web pages. Sometimes, when you request the same url repeatedly, the request doesn't get resent and instead it just returns a cached version of the page. So by adding an ignore=(currenttime_in_milliseconds) parameter it makes the url always different. The common phrase for this is a "cache buster".