After hours of searching and hours I finally found an API script for gamercards. The only problem is this annoyance updates every 30 minutes if I open a new browser and go to the URL then I get the most updated information. Is there no way to think that every fresh one is a new browser session?
Here is the script
If your curl is stored somewhere, then it is most likely that It is kept around the cookie, giving you a 30 minute timeout
Try curl_setopt ($ ch, CURLOPT_COOKIESESSION, TRUE); To compel the session cookies (so that they erase after each run) Also, if there is a cookie jar file anywhere, check that you are new to every time with the API To implement the session correctly, it will be completely erased.
Comments
Post a Comment