API概要
開封カウントの結果を取得
特定の配信タスクで、開封カウントを利用していた場合に、その結果の一覧を取得します。取得項目は次の通りです。
- 送信数
- ユニーク開封数
- 開封率(%) ( = ユニーク開封数/送信数)
- 開封1件ごとに(※リクエストパラメータのincludes_logが1の場合)
- 開封したユーザーのメールアドレスは、アップロードされたリストの何行目か
- 開封した日時
リクエストURL
https://example.com/API/get_dispositions
※正式なURLは御契約後にご連絡致します。
リクエストパラメータ
パラメータ名 | データタイプ | 必須 | 説明 |
---|---|---|---|
login_id | string | ○ | ログイン用ID |
password | string | ○ | ログイン用パスワード |
id | string | ○ | タスクID |
includes_log | string | ○ | 開封1件ごとのデータを含むか(含む = 1、デフォルト = 0) |
APIからのXMLについて
APIから送信されるXMLの書式は以下の通りとなります。
<?xml version="1.0" encoding="UTF-8"?> <response xmlns="urn:3hands:3mail"> <status>OK</status> //ステータス <code>212</code> //コード <message>success</message> //メッセージ <total>1234</total> //送信数 <count>345</count> //ユニーク開封数 <rate>28</rate> //開封率(%) //以下は includes_log が 1の場合のみ含まれます <disposition> <line>123</line> //アドレスの行番号 <created_at>2014-01-02 03:04:05</created_at> //開封した日時 </disposition> <disposition> (開封の数だけ繰り返し) </disposition> </response>
※開封が0件の場合でもstatusはOKとなります。
返り値の詳細
名前 | データタイプ | 最大バイト数 | 説明 |
---|---|---|---|
status | string | 2 | ステータス(OK=成功、NG=失敗) |
code | string | 3 | コード(一覧) |
message | string | 255 | メッセージ |
total | int | 11 | 送信数 |
count | int | 11 | ユニーク開封数 |
rate | int | 2 | 開封率(%) |
disposition.line | int | 11 | 開封したユーザーのメールアドレスは、アップロードされたリストの何行目か |
disposition.created_at | string | 32 | 開封日時 |
サンプルスクリプト
<?php //APIへ送信するデータ $post_data = array( "login_id" => "login@example.com", //ログインID "password" => "password", //ログインパスワード "id" => "90" //タスクID ); //APIのHostを設定 $api_host = "example.com"; //APIのPathを設定 $api_path = "/API/get_dispositions"; //APIへ接続 $sp = fsockopen('ssl://' . $api_host, 443, $errno, $errstr, 30); //エラーチェック if(!$sp){ print $errno . "<br>" . $errstr; exit; } //boundary生成 $boundary = "-----" . md5(uniqid()); //header生成 $header = "POST " . $api_path . " HTTP/1.0\r\n"; $header .= "Host: " . $api_host . "\r\n"; $header .= "Content-type: multipart/form-data, boundary=" . $boundary . "\r\n"; $header .= "Referer: http://" . $_SERVER['SERVER_NAME'] . $_SERVER['SCRIPT_NAME'] . "\r\n"; $header .= "Accept: */*\r\n"; //body生成 $body = ""; //テキストデータをAPIへ送信できるように変換 foreach ($post_data as $key => $val){ $body .= "--" . $boundary . "\r\n"; $body .= "Content-Disposition: form-data; name=\"" . $key . "\"\r\n"; $body .= "\r\n" . $val . "\r\n"; $body .= "--" . $boundary . "\r\n"; } //送信データ末尾の区切り文字を追加 $body .= "--" . $boundary . "--\r\n"; $body .= "\r\n\r\n"; //ヘッダーにbodyのサイズを追加 $header .= "Content-length: " . strlen($body) . "\r\n\r\n"; //データ送信 fputs($sp, $header); fputs($sp, $body); //データ受信 $buf = ""; $response = fgets($sp); if (substr_count($response, "200 OK") > 0){ while (!feof($sp)){ $buf = $buf . fread($sp, 4096); } }else{ print "データ受信に失敗しました"; exit; } //接続終了 fclose($sp); //結果XMLを取得 $result = substr($buf, strpos($buf, "\r\n\r\n")+4); //XMLをパースする $result_xml = simplexml_load_string($result); //結果を取得し表示 print "status:" . $result_xml->status . "<br>"; //ステータス print "code:" . $result_xml->code . "<br>"; //コード print "message:" . $result_xml->message . "<br>"; //メッセージ print "total:" . $result_xml->total . "<br>"; //送信数 print "count:" . $result_xml->count . "<br>"; //ユニーク開封数 print "rate:" . $result_xml->rate . "<br>"; //開封率 //開封1件ずつの詳細を表示 foreach ($result_xml->disposition as $disposition){ print "----------" . "<br>"; print "line:" . $disposition->line. "<br>"; //アドレスの行番号 print "created_at:" . $disposition->created_at. "<br>"; //開封日時 } exit; ?>
サンプルスクリプト解説
APIへ送信するデータ及び、APIのURLについて設定を行います。
//APIへ送信するデータ $post_data = array( "login_id" => "login@example.com", //ログインID "password" => "password", //ログインパスワード "id" => "90" //タスクID ); //APIのHostを設定 $api_host = "example.com"; //APIのPathを設定 $api_path = "/API/get_dispositions";
APIへソケットを使って接続を行います。
//APIへ接続 $sp = fsockopen('ssl://' . $api_host, 443, $errno, $errstr, 30); //エラーチェック if(!$sp){ print $errno . "<br>" . $errstr; exit; }
APIへ送信するデータの作成を行います。
//boundary生成 $boundary = "-----" . md5(uniqid()); //header生成 $header = "POST " . $api_path . " HTTP/1.0\r\n"; $header .= "Host: " . $api_host . "\r\n"; $header .= "Content-type: multipart/form-data, boundary=" . $boundary . "\r\n"; $header .= "Referer: http://" . $_SERVER['SERVER_NAME'] . $_SERVER['SCRIPT_NAME'] . "\r\n"; $header .= "Accept: */*\r\n"; //body生成 $body = ""; //テキストデータをAPIへ送信できるように変換 foreach ($post_data as $key => $val){ $body .= "--" . $boundary . "\r\n"; $body .= "Content-Disposition: form-data; name=\"" . $key . "\"\r\n"; $body .= "\r\n" . $val . "\r\n"; $body .= "--" . $boundary . "\r\n"; } //送信データ末尾の区切り文字を追加 $body .= "--" . $boundary . "--\r\n"; $body .= "\r\n\r\n"; //ヘッダーにbodyのサイズを追加 $header .= "Content-length: " . strlen($body) . "\r\n\r\n";
APIへデータの送信を行います。
//データ送信
fputs($sp, $header);
fputs($sp, $body);
データの受信を行います。
へッダーが "200 OK" 以外の場合はエラーとなります。
//データ受信 $buf = ""; $response = fgets($sp); if (substr_count($response, "200 OK") > 0){ while (!feof($sp)){ $buf = $buf . fread($sp, 4096); } }else{ print "データ受信に失敗しました"; exit; } //接続終了 fclose($sp);
受信したデータからXML部分のみを取得後パースを行います。
//結果XMLを取得 $result = substr($buf, strpos($buf, "\r\n\r\n")+4); //XMLをパースする $result_xml = simplexml_load_string($result);
結果の基本項目は以下の方法で取得できます。
今回はサンプルなので取得結果をそのまま表示します。
//結果を取得し表示 print "status:" . $result_xml->status . "<br>"; //ステータス print "code:" . $result_xml->code . "<br>"; //コード print "message:" . $result_xml->message . "<br>"; //メッセージ print "total:" . $result_xml->total . "<br>"; //送信数 print "count:" . $result_xml->count . "<br>"; //ユニーク開封数 print "rate:" . $result_xml->rate . "<br>"; //開封率
開封の結果は 以下の方法で取得できます。
詳細はステータスがOK(送信した内容に問題が無い)の場合のみ取得できます。
//開封1件ずつの詳細を取得し表示 foreach ($result_xml->disposition as $disposition){ print "----------" . "<br>"; print "line:" . $disposition->line. "<br>"; //アドレスの行番号 print "created_at:" . $disposition->created_at. "<br>"; //開封日時 }
サンプルスクリプトの実行結果は以下の通りとなります。
status:OK code:212 message:success total:1234 count:345 rate:28 ---------- line:123 created_at:2014-01-02 03:04:05 ---------- line:456 created_at:2014-05-06 07:08:09
スクリプト実行後の処理について
実際にはXMLを取得後、ステータス及びコードに合わせて処理を行ってください。(正常終了、エラー表示等)
注意事項
開封履歴は配信から3ヶ月間のみ保存しています。それ以降は削除されますのでご注意ください。