GoogleマップエンジンAPIのbatchInsertを使いたい。これを dojo/request で呼び出しています。
以下のようにバッチ挿入を呼び出すコード:
request("https://www.googleapis.com/mapsengine/v1/tables/1453899488279955151311853667273131550346/features/batchInsert",
{
headers : {
"Authorization": 'Bearer '+ token.access_token,
"Access-Control-Allow-Origin" : null,
"X-Requested-With": null,
"Content-Type": "application/json"
},
handleAs : 'json',
method : 'POST',
data :datastring
}
).then(function(data){
console.log("Got data :"+data);
}, function(err){
console.log("Got error :"+err.response.text);
}, function(evt){
console.log("Got Event :"+evt);
});
以下のようにリクエスト
{
"features":[
{"type":"Feature",
"geomerty":
{
"type":"Point",
"coordinates":[-34.678393740116476,150.765380859375]
},
"properties":
{
"gx_id":"2",
"FID":2,
"sapobjectid":"12345sdf",
"sapobjectname":"Test",
"Features":"Point"}
}
]
}
しかし、私はエラーが発生しています
Got error :{
"error": {
"errors": [
{
"domain": "global",
"reason": "required",
"message": "A value is required.",
"locationType": "other",
"location": "features[0].geometry"
}
],
"code": 400,
"message": "A value is required."
}
}
私が欠けているものを教えてください。