Impedir que a API do feed do Google use o feed em cache

Estou usando oJSAPI do feed do Google ler / analisar um feed. O problema é que, quando o feed muda, as entradas anteriores se tornam inválidas (links e imagens não funcionam), então eunão podes carregar uma versão em cache do feed. Eu pensei que haveria uma opção ao carregar o feed para não usar a versão em cache, mas não vejo uma. Minha solução é adicionar uma variável (t) ao final da URL do feed para que seja "única", mas isso parece ser hacky (mas funciona). Alguém sabe de uma maneira melhor de fazer isso?

    function onLoad() {
      // Create a feed instance that will grab feed feed.
      var feed = new google.feeds.Feed(feedLocation+"&t="+new Date().getTime());

      // Request the results in XML (so that we can parse out all the info
      feed.setResultFormat(google.feeds.Feed.XML_FORMAT);

      //must set this - if you don't, it defaults to 4
      feed.setNumEntries(50);

      // Calling load sends the request off.  It requires a callback function.
      feed.load(feedLoaded);
    }

questionAnswers(2)

yourAnswerToTheQuestion