We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 052e667 commit 9531cbcCopy full SHA for 9531cbc
src/main/java/com/ignorelist/kassandra/steam/scraper/Scraper.java
@@ -71,6 +71,7 @@ public Set<String> loadUserTags(Long gameId) throws IOException {
71
URL url=new URL("http://store.steampowered.com/app/"+gameId);
72
URLConnection uRLConnection=url.openConnection();
73
uRLConnection.setRequestProperty("User-Agent", "Valve/Steam HTTP Client 1.0 (tenfoot)");
74
+ uRLConnection.setRequestProperty("Cookie", "birthtime=-3599; lastagecheckage=1-January-1970");
75
InputStream inputStream=uRLConnection.getInputStream();
76
try {
77
Files.copy(inputStream, cacheFilePath);
0 commit comments