参考の記事
http://kuc-arc-f.com/agri/?product=product-post-2
========================================================
一般的なRest-API などの実装方法で良いと思いますが、
プロトコル仕様を決めて、解析処理側と合わせる
必要があります。
ヘッダ文字 (データ部分の開始位置 検索用)、
各項目の開始終了位置と、コード内容 など
#code
https://github.com/kuc-arc-f/php-agri-2
#Web API sample (php)
https://github.com/kuc-arc-f/php-agri-2/blob/master/agri/php/mc_post1.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if(isset($_GET["param1"])){ | |
//do something... | |
$param_1 = $_GET["param1"]; | |
$sHEAD ="web-response1="; | |
$res = "1"; //stat | |
$res . = "1" // param-1 | |
$res . = "2" // param-2 | |
echo $sHEAD . $res; | |
} | |
?> |
http://knaka0209.blogspot.jp/2015/04/agri.html
0 件のコメント:
コメントを投稿