我目前正在iOS应用程序中实施Google地图和Google方向,我希望能够查看我的使用情况/配额,但在我的Google Developer Console中,当我进入概述时,所有统计信息都说我有提出0
请求,即使我当然有。
在我的Xcode项目中,在 AppDelegate.swift 中,我已经包含:
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Google SDK.
GMSServices.provideAPIKey("XXXXXXXXXXXXXXXXX")
return true
}
在我创建网址以从Google服务器获取JSON
结果的功能中,我有以下代码段:
var directionsURLString = baseURLDirections + "origin=" + originLocation + "&destination=" + destinationLocation + "&mode=walking"
我想指出,我故意在网址中遗漏了我的API密钥,因为它导致检索JSON结果时出错。