JSON を使用して API への POST リクエストを開始しようとしています。
サンプルコードをいくつか見つけました。先に進む前に、それを機能させたいと思っていましたが、行き詰まっています...
<html>
<head>
<script type="text/javascript">
function JSONTest()
{
requestNumber = JSONRequest.post(
"https://example.com/api/",
{
apikey: "23462",
method: "example",
ip: "208.74.35.5"
},
function (requestNumber, value, exception) {
if (value) {
processResponse(value);
} else {
processError(exception);
}
}
);
}
</script>
</head>
<body>
<h1>My JSON Web Page</h1>
<button type="button" onclick="JSONTest()">JSON</button>
</body>
</html>
これは .html ファイルで、Chrome で実行しています。ボタンをクリックしても何も起こらない...
JSON 応答を解釈して表示できる JavaScript が欠けていると思いますか? そうでなければ、他のアドバイスはありますか?