サービスを利用するためのWebベースのAPIを提供している企業もあります。私は、Webブラウザ内からこのAPI関数を呼び出すことに問題はありません:WindowsアプリケーションからAJAX API関数を呼び出す方法は?
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript"
src="http://someaddress.com?&key=somekey"></script>
<script type="text/javascript">
var object = new SomeObject();
object.SomeFunction();
</script>
</head>
私はSomeFunction()の戻り値に興味があります。 Windowsアプリケーションからこの戻り値を取得するにはどうすればよいですか?
WebベースのAPIはいつから「AJAX API」と呼ばれていますか? –