Google 财经的股票报价出现问题

发布于 2024-08-20 06:57:28 字数 771 浏览 7 评论 0原文

以下是我从谷歌财经获得的股票报价示例。但它似乎不起作用。不显示股票价格。

谢谢

<body>
Hello world!
Here is your portfolio:<br/>
  GOOG: <span id=_IG_SYM1_l></span> (<span id=_IG_SYM1_c></span>)<br/>
  AAPL: <span id=_IG_SYM2_l></span> (<span id=_IG_SYM2_c></span>)<br/>
  INTC: <span id=_IG_SYM3_l></span> (<span id=_IG_SYM3_c></span>)<br/>


<script type="text/javascript">
  var quote = new google.finance.Quote();
  quote.enableDomUpdates( { 'GOOG' : '_IG_SYM1', 'AAPL' : '_IG_SYM2', 
    'INTC' : '_IG_SYM3' } );

  quote.getQuotes(["GOOG", "AAPL", "INTC"]);
</script>


<!-- start: javascripts -->

<!-- end: javascripts -->
</body>

Below is the example I got from google finance for a stock quote. But it doesnt seem to be working. Stock price isnt displayed.

Thanks

<body>
Hello world!
Here is your portfolio:<br/>
  GOOG: <span id=_IG_SYM1_l></span> (<span id=_IG_SYM1_c></span>)<br/>
  AAPL: <span id=_IG_SYM2_l></span> (<span id=_IG_SYM2_c></span>)<br/>
  INTC: <span id=_IG_SYM3_l></span> (<span id=_IG_SYM3_c></span>)<br/>


<script type="text/javascript">
  var quote = new google.finance.Quote();
  quote.enableDomUpdates( { 'GOOG' : '_IG_SYM1', 'AAPL' : '_IG_SYM2', 
    'INTC' : '_IG_SYM3' } );

  quote.getQuotes(["GOOG", "AAPL", "INTC"]);
</script>


<!-- start: javascripts -->

<!-- end: javascripts -->
</body>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

金兰素衣 2024-08-27 06:57:28

您似乎正在使用 http://code 中的示例.google.com/apis/finance/docs/finance-gadgets.html#JS_API 。如果我理解正确的话,该 API 仅适用于小工具。它说,

“使用市场数据 API 的小工具
只能在 iGoogle 中运行——要么
生产 iGoogle 或 iGoogle
沙箱。”

常规 Google Finance JS API 仅允许您获取与用户的投资组合相关的数据。

It looks like you are using the example at http://code.google.com/apis/finance/docs/finance-gadgets.html#JS_API . If I understand right, that API is only available to gadgets. It says,

"Gadgets that use the Market Data API
can only run in iGoogle--either
production iGoogle, or the iGoogle
sandbox."

The regular Google Finance JS API only allows you to get data associated with a user's portfolio.

二货你真萌 2024-08-27 06:57:28

您可能需要首先对 Google 财经服务进行身份验证。

AuthSubRequest URL 可能如下所示:

https://www.google.com/accounts/AuthSubRequest?
scope=http%3A%2F%2Ffinance.google.com%2Ffinance%2Ffeeds%2F&session=1&secure=0
&next=http%3A%2F%2Fwww.example.com%2Fwelcome.

http://code。 google.com/apis/finance/docs/2.0/developers_guide_protocol.html#Authenticating

You probably need Authenticating to the Google Finance service first.

The AuthSubRequest URL might look like this:

https://www.google.com/accounts/AuthSubRequest?
scope=http%3A%2F%2Ffinance.google.com%2Ffinance%2Ffeeds%2F&session=1&secure=0
&next=http%3A%2F%2Fwww.example.com%2Fwelcome.

http://code.google.com/apis/finance/docs/2.0/developers_guide_protocol.html#Authenticating

ζ澈沫 2024-08-27 06:57:28

您是否尝试过用引号将 span id 属性括起来?

Have you tried surrounding the span id attributes with quotes?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文