Is there a way to get Bing’s photo of the day?

I think the best way is immitating the way they do it themselves through their AJAX calls. They call this URL and extract the information through XML deserialization. XML: http://www.bing.com/HPImageArchive.aspx?format=xml&idx=0&n=1&mkt=en-US JSON: http://www.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1&mkt=en-US RSS: http://www.bing.com/HPImageArchive.aspx?format=rss&idx=0&n=1&mkt=en-US The mkt attribute can obviously be changed to a different region than ´en-US´, but can also be opted out of entirely if you don’t care about … Read more