使用 Google Finance API 檢索股票報價
如您所提到的,Google Finance Gadget API 不再可用。因此,透過這種方法存取股票報價不再可行。
但是,還有其他資源提供類似的功能。一種替代方案是 Google Cloud Platform 的財務資料 API。此 API 可讓您從各種來源檢索財務數據,包括股票報價。
要使用財務資料 API,您需要建立 Google Cloud Platform (GCP) 帳戶並啟用 Financial Data API。您專案的資料 API。啟用後,您可以使用以下步驟以程式設計方式存取股票報價:
例如,檢索Microsoft (MSFT) 的最新股票報價,您可以在Python 中使用以下代碼:
<code class="python">from google.cloud import finance # Import the financial data API library client = finance.StockClient() # Instantiate the client # Define the name of the stock stock_name = "NASDAQ:MSFT" # Fetch the stock information quote = client.get_stock_snapshot(stock_name) # Print the stock symbol and price print(f"Stock: {quote.symbol}\nPrice: ${quote.price}")</code>
財務數據API 提供一套全面的財務信息,包括股票報價、歷史定價資料、公司財務狀況、等等。透過利用此 API,您可以以程式設計方式存取股票相關訊息,以增強您的財務應用程式。
以上是Google 財經小工具 API 棄用後如何擷取股票行情?的詳細內容。更多資訊請關注PHP中文網其他相關文章!