0

我正在尝试使用 google newsShow api 在 html 应用程序中显示新闻。这是代码

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title>Google AJAX Search API Sample</title>
    <script src="http://www.google.com/jsapi?key=AIzaSyA5m1Nc8ws2BbmPRwKu5gFradvD_hgq6G0" type="text/javascript"></script>
    <script type="text/javascript">
google.load("elements", "1", {packages : ["newsshow"]});

function onLoad() {
  // Set the display time to 2 seconds, and transition time to 100 ms
  var options = {
    "queryList" : [
      {
        "title" : "indian News",
        "topic" : "n",
        "ned" : "in"
      }
    ],
    "displayTime" : 1000,
    "transitionTime" : 50
  }
  var content = document.getElementById('content');
  var newsShow = new google.elements.NewsShow(content, options);
}

google.setOnLoadCallback(onLoad);
    </script>
  </head>
  <body style="font-family: Arial;border: 0 none;">
    <div id="content"></div>
  </body>
</html>

直到昨天,这段代码都运行良好。但是今天早上显示时间根本不起作用。

我参考了此链接中提供的示例, https://code.google.com/apis/ajax/playground/#timer_options

在这里它也不起作用,我清楚地记得新闻是如何根据过渡时间更新的。

我已经尝试了所有这些事情,1. 关闭浏览器 n 再次启动 2. 重新启动系统 3. 检查其他桌面上的示例。

然而没有任何工作。完全不知道发生了什么。

谁能帮忙,

谢谢你的时间!!

4

1 回答 1

0

谷歌放弃了“新闻节目”。它已被弃用很长时间,但几周前新闻节目刚刚停止工作。我不得不争先恐后地为我的网站建立一个替代品。

这是一个 Google 新闻 RSS 替代品,它在很多方面都更好:

http://www.gooplusplus.com/news-frame-guide.html

请参阅此论坛主题:

http://hypercube.us/forum/index.php?topic=1501.0

于 2013-06-04T21:36:00.657 回答