Authentication

AuthToken 介面

google.maps.journeySharing.AuthToken 介面

權杖擷取器傳回的驗證權杖。

expiresInSeconds
類型:  number
到期時間 (以秒為單位)。權杖在擷取後會在這段時間內失效。
token
類型:  string
權杖。

AuthTokenContext 介面

google.maps.journeySharing.AuthTokenContext 介面

包含建立 JSON Web Token 所需的其他資訊。

deliveryVehicleId optional
類型:  string optional
提供產生的權杖時,應針對提供的 DeliveryVehicleId 取得私人 DeliveryVehicleId 憑證附加資訊。
taskId optional
類型:  string optional
提供產生的權杖時,應針對提供的 taskId 擁有私人 TaskId 憑證附加資訊。
trackingId optional
類型:  string optional
提供時,產生的權杖應針對提供的追蹤 ID 擁有私人 TrackingId 憑證附加資訊。
tripId optional
類型:  string optional
提供時,產生的符記應針對提供的 tripId 擁有私人 TripId 憑證附加資訊。
vehicleId optional
類型:  string optional
提供時,產生的權杖應針對提供的 carId 擁有私人 VehicleId 憑證附加資訊。

AuthTokenFetcher typedef

google.maps.journeySharing.AuthTokenFetcher typedef

驗證權杖函式類型。

這個函式接受 AuthTokenFetcherOptions 物件,其中包含要壓縮的驗證權杖的詳細資料。這個函式應壓縮權杖,並傳回含有權杖及其到期時間的 AuthToken

function(AuthTokenFetcherOptions): Promise<AuthToken>

AuthTokenFetcherOptions 介面

google.maps.journeySharing.AuthTokenFetcherOptions 介面

驗證權杖擷取工具的選項。

context
類型:  AuthTokenContext
驗證權杖內容。結構定義中指定的 ID 應加到傳送至 JSON Web Token 探勘端點的要求。
serviceType
Fleet Engine 服務類型。

FleetEngineServiceType 常數

google.maps.journeySharing.FleetEngineServiceType 常數

機群引擎服務類型。

呼叫 const {FleetEngineServiceType} = await google.maps.importLibrary("journeySharing") 即可存取。請參閱 Maps JavaScript API 中的程式庫

DELIVERY_VEHICLE_SERVICE 用於存取貨運車輛的 Fleet Engine 服務。
TASK_SERVICE 用於存取工作資訊的 Fleet Engine 服務。
TRIP_SERVICE 用於存取行程資訊的 Fleet Engine 服務。
UNKNOWN_SERVICE 不明的 Fleet Engine 服務。