google.elements.newsShow 顯示時間不起作用 (google.elements.newsShow display Time not working)


問題描述

google.elements.newsShow 顯示時間不起作用 (google.elements.newsShow display Time not working)

I am trying to use google newsShow api to display news in a html app. Here is the code 

<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>

This code was working fine until yesterday. However this morning the display time is not working at all.

I referred to the example provided in this link, https://code.google.com/apis/ajax/playground/#timer_options

here too its not working, I remember very well how the news would get updated according the transition time.

I have tried all these things, 1. closed the browser n started again 2. restarted the system 3. checking the example on other desktops.

Yet nothings working. Totally unaware whats happening.

Could anyone help,

Thanks for ur time!!


參考解法

方法 1:

Google abandoned "newsshow". It had been deprecated for a long time but a few weeks ago newsshow just stopped working. I had to scramble to build a replacement for my sites.

Here is a Google News RSS replacement that in many ways is better:

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

See this forum thread:

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

(by swatixRadio.us)

參考文件

  1. google.elements.newsShow display Time not working (CC BY‑SA 3.0/4.0)

#google-api #javascript #html






相關問題

在 PHP 中壓縮 JSON 字符串並在 Javascript 中解壓縮以進行 Google API 的數據庫查詢 (Compress JSON string in PHP and decompress in Javascript for Database query for Google API)

將 Google Places API 與 MonoTouch 一起使用? (Using Google Places API with MonoTouch?)

如何獲取我的 Gmail 帳戶的個人資料圖片? (How to get the profile picture of my Gmail account?)

google.elements.newsShow 顯示時間不起作用 (google.elements.newsShow display Time not working)

gapi.client.load 未調用回調:console.log 中指定了無效或非法字符串錯誤 (gapi.client.load not calling callback: An invalid or illegal string was specified error in console.log)

Google Developer Console 和已安裝的應用 (Google Developer Console and Installed App)

如何從 Google 自定義搜索 API 獲得 100 多個結果 (How to get more than 100 results from Google Custom Search API)

Pandas / Google Analytics API 身份驗證嘗試給我帶來了一個奇怪的 python 錯誤 (Pandas / Google Analytics API authentication attempt throws me a weird python error)

在 alpha 階段使用谷歌云功能進行生產 (Using a google cloud feature in alpha stage for production)

流量中的 Google Maps Distance Matrix API 持續時間添加返回錯誤結果的所有段 (Google Maps Distance Matrix API duration in traffic adding all segments returning wrong result)

Python 事件集成中的 QML Calendar 和 Google Calendar API (QML Calendar and Google Calendar API in Python events integration)

獲取錯誤 {“error”:“invalid_grant”,“error_description”:“令牌已過期或撤銷。” 來自谷歌 oauth2 API (Getting error { "error" : "invalid_grant", "error_description" : "Token has been expired or revoked." } from Google oauth2 API)







留言討論