我正在尝试实现一个简单的表单,允许我将照片添加到场地(有 30 多个)。我按照这里的指南更改了一些内容以匹配当前的 api。当我使用上传器时,我得到下面的 JSON 响应。一切都井井有条吗?我收到了 200 条回复,但我没有看到将照片添加到各自的地点。我还为我用来上传的表单包含了我的 html,如果有什么问题,请看看让我知道。谢谢!
JSON响应:
{"meta":{"code":200},"notifications":[{"type":"notificationTray","item":{"unreadCount":0}}],"response":{"photo":{"id":"502ab14fe4b0ed9600d7722d","createdAt":1344975183,"prefix":"https:\/\/irs3.4sqi.net\/img\/general\/","suffix":"\/atVMrQ02CcgHIamCVmTugx4MCX4hIEVv1lLqbo24cnA.jpg","width":700,"height":525}}}
表单 HTML:
<form action="https://api.foursquare.com/v2/photos/add" method="post" enctype="multipart/form-data" v="20120809" >
<p>Venue ID: <input type="text" name="venueId"></p>
<p><input type="file" name="photo"></p>
<input type="hidden" name="oauth_token" value="MY OAUTH TOKEN">
<input type="submit">
</form>