Skip to content

Instantly share code, notes, and snippets.

@Calystod
Calystod / get-steam-screenshots.php
Created January 14, 2016 01:37 — forked from richardbenson/get-steam-screenshots.php
Turn Steam screenshots into RSS feed
<?php
header("Content-Type: application/rss+xml; charset=utf-8");
error_reporting(E_ALL);
ini_set("display_errors", 0);
define('STEAM_USER', $_GET['u']);
define('LIST_URL', "http://steamcommunity.com/id/".STEAM_USER."/screenshots/?appid=0&sort=newestfirst&browsefilter=myfiles&view=grid");
include('extlib/ganon/ganon.php');