2つの都市間の距離を取得するためにGooglePlace APIを使用していますが、 http://maps.googleapis.com/maps/api/distancematrix/json?origins=dehli&destinations=pune&mode=bicycling&language = en-EN&sensor = true&key = AppKey サービスは次の応答を返します:
{
"destination_addresses": [ ],
"error_message": "Requests to this API must be over SSL.",
"Origin_addresses": [ ],
"rows": [ ],
"status": "REQUEST_DENIED"
}
この問題の解決策は何ですか?
HTTP overSSLプロトコルのURLにはプレフィックスがhttps://
ではなくhttp://
。
変更 http://maps.googleapis.com/maps/api/distancematrix/json?origins=dehli&destinations=pune&mode=bicycling&language=en-EN&sensor=true&key=AppKey(paste App Key)
to https://maps.googleapis.com/maps/api/distancematrix/json?origins=dehli&destinations=pune&mode=bicycling&language=en-EN&sensor=true&key=AppKey(paste App Key) ==