我正在使用 google 地方并尝试向 google api 发送碰撞(或签到)请求。
bumpReference = {"reference" : "referenceIdObtainedFromNearbySearch"};
$.post('https://maps.googleapis.com/maps/api/place/bump/json?sensor=true&key=MyApiKeyGoesHere',bumpReference,
function(data)
{
alert(data.status);//should return OK on success
});
HTTP/1.1 400 Bad Request
由于某种原因,我得到了回应。
我检查了密钥和参考是否正确。
这是官方文档所说的:
Bump 是一个 HTTP POST 请求,格式如下:
POST https://maps.googleapis.com/maps/api/place/bump/json?sensor=true_or_false&key=AddYourOwnKeyHere HTTP/1.1
Host: maps.googleapis.com
{
"reference": "place_reference"
}