我想添加一個新的簽入,但我無法弄清楚Foursquare是如何接收參數的。我試圖在體內的URL編碼的字符串:POST到foursquare API的示例?
shout=test&venueId=4a663032f964a5202fc81fe3
我試圖在體內的JSON字符串(使用應用程序/ json的Content-Type頭):
{"shout":"test","venueId":"4a4a9f71f964a52004ac1fe3"}
但是,我總是得到錯誤迴應:
meta = {
code = 400;
errorDetail = "Must provide parameter venueId";
errorType = other;
};
POST到他們的checkins/add端點的正確方法是什麼?
我在他們的文檔上看到,有時該字段被稱爲VENUE_ID和其他時間venueId。你嘗試過其他嗎? – theabraham