本教學課程說明如何擷取商家檔案中的地點指標。 Google My Business API 可讓您使用位置資訊 指標來擷取以下類型的資料:
事前準備
您必須先註冊應用程式,才能使用 Google My Business API 並取得 OAuth 2.0 憑證。如要進一步瞭解如何開始使用 Google My Business API,請參閱基本設定。
支援的深入分析資訊
如要查看支援的深入分析資訊,請參閱指標 參考頁面
基本分析
擷取指定地點清單的基本深入分析資料。使用 accounts.locations.reportInsights
,透過 API 傳回與某地點相關的深入分析資料。
如要傳回與某地區相關的基本洞察資料,請使用下列方式:
POST https://mybusiness.googleapis.com/v4/accounts/{accountId}/locations:reportInsights { "locationNames": [ "accounts/{accountId}/locations/{locationId}" ], "basicRequest": { "metricRequests": [ { "metric": "QUERIES_DIRECT" }, { "metric": "QUERIES_INDIRECT" } ], "timeRange": { "startTime": "2016-10-12T01:01:23.045123456Z", "endTime": "2017-01-10T23:59:59.045123456Z" } } }
行車路線
擷取指定地點清單的行車路線指標。使用
accounts.locations.reportInsights
敬上
提供相關 API,用於傳回與地點相關聯的行車路線指標。
如要傳回行車路線指標,請使用下列指令:
POST https://mybusiness.googleapis.com/v4/accounts/{accountId}/locations:reportInsights { "locationNames": [ "accounts/{accountId}/locations/{locationId}" ], "drivingDirectionsRequest": { "numDays": "NINETY" } }