公司做的app需要做IAP訂閱支付,自己做完總結一下,希望對小夥伴們有幫助我就很欣慰了。程式碼寫的不好 不要噴我。【推薦:】
首先講一下我的業務邏輯:
先上圖
php入門到就業線上直播課:進入學習
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API偵錯工具:
下面詳細講一下,作為伺服器端具體要做些什麼,並貼上對應的程式碼:
第一步:
通過使用者端傳過來的recept(票據)進行生成訂單的操作【注意這裡需要驗證訂單是否已存在】,訂單生成返回使用者端相關資訊;
public function pay()
{
$uid = $this->request->header('uid');
$receipt_data = $this->request->post('receipt');
if (!$uid || !$receipt_data) return $this->rep(400);
$info = $this->getReceiptData($receipt_data, $this->isSandbox);//去蘋果進行驗證,防止收到的是偽造的資料
Log::info(['uid'=>$uid,'receipt'=>$receipt_data,'iap_info'=>$info]);
if (is_array($info) && $info['status'] == 0) {//沒有錯誤就進行生成訂單的業務邏輯的處理
} elseif (is_array($info) && $info['status'] == 21007) {
$new_info = $this->getReceiptData($receipt_data, true);//接著去蘋果官網進行二次驗證(沙盒)
// 進行生成訂單的業務邏輯的處理
}
}
登入後複製
private function getReceiptData($receipt, $isSandbox = false)
{
if ($isSandbox) {
$endpoint = 'https://sandbox.itunes.apple.com/verifyReceipt';//沙箱地址
} else {
$endpoint = 'https://buy.itunes.apple.com/verifyReceipt';//真實運營地址
}
$postData = json_encode(['receipt-data' => $receipt, 'password'=>'abde7d535c']);
$ch = curl_init($endpoint);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
$response = curl_exec($ch);
$errno = curl_errno($ch);
curl_close($ch);
if ($errno != 0) {//curl請求有錯誤
$order['status'] = 408;
} else {
$data = json_decode($response, true);
if (isset($data['status'])) {
//返回產品的資訊
$order = isset($data['receipt']) ? $data['receipt'] : [];
$order['status'] = $data['status'];
} else {
$order['status'] = 30000;
}
}
return $order;
}
登入後複製
第二步:
自動訂閱續費功能(在支付的基礎上,才能進行自動續費的功能,這裡的介面不需要使用者端調起,這個是蘋果端自動回撥的,需要在蘋果官網上進行填寫回撥連結,如下圖:)
接下來配上自動回撥的程式碼:
/*
* 自動續費訂閱回撥
* Doc: https://developer.apple.com/documentation/appstoreservernotifications/notification_type
*/
public function renew(){
$resp_str = $this->request->post();
Log::info(['resp_str'=>$resp_str]);
if(!empty($resp_str)) {
// $data = json_decode($resp_str,true);
//
$data = $resp_str['unified_receipt'];
//有時候蘋果那邊會傳空資料呼叫
// notification_type 幾種狀態描述
// INITIAL_BUY 初次購買訂閱。latest_receipt通過在App Store中驗證,可以隨時將您的伺服器儲存在伺服器上以驗證使用者的訂閱狀態。
// CANCEL Apple客戶支援取消了訂閱。檢查Cancellation Date以瞭解訂閱取消的日期和時間。
// RENEWAL 已過期訂閱的自動續訂成功。檢查Subscription Expiration Date以確定下一個續訂日期和時間。
// INTERACTIVE_RENEWAL 客戶通過使用用App Store中的App Store以互動方式續訂訂閱。服務立即可用。
// DID_CHANGE_RENEWAL_PREF 客戶更改了在下次續訂時生效的計劃。當前的有效計劃不受影響。
$notification_type = $resp_str['notification_type'];//通知型別
$password = $resp_str['password']; // 共用祕鑰
if ($password == "abde7d5353") {
$receipt = isset($data['latest_receipt_info']) ? $data['latest_receipt_info'] : $data['latest_expired_receipt_info']; //latest_expired_receipt_info 好像只有更改續訂狀態才有
//找出來最近的那一組資訊
$receipt = self::arraySort($receipt, 'purchase_date', 'desc');
$original_transaction_id = $receipt['original_transaction_id']; // //原始交易ID
$transaction_id = $receipt['transaction_id']; // //交易的標識
$purchaseDate = str_replace(' America/Los_Angeles','',$receipt['purchase_date_pst']);
$orderinfo = Order::field('uid,original_transaction_id,money,order_no,pay_time')->where(['original_transaction_id' => $original_transaction_id])->find();
$user_info = User::field('app_uid,device_id,unionid')->get($orderinfo['uid']);
if ($notification_type == 'CANCEL') { //取消訂閱,做個記錄
IpaLog::addLog($orderinfo['uid'], $orderinfo['order_no'], $receipt, $resp_str);
} else {
if ($notification_type == "INTERACTIVE_RENEWAL" || $notification_type == "RENEWAL" || $notification_type == 'INITIAL_BUY') {
// $transTime = $this->toTimeZone($receipt['purchase_date']);
IapRenew::addRenew($orderinfo['uid'], $receipt, $data['latest_receipt'],1,$notification_type,$user_info['app_uid'],$purchaseDate);
IpaLog::addLog($orderinfo['uid'], $orderinfo['order_no'], $receipt, $resp_str);
} else {
IapRenew::addRenew($orderinfo['uid'], $receipt, $data['latest_receipt'],0,$notification_type,$user_info['app_uid'],$purchaseDate);
IpaLog::addLog($orderinfo['uid'], $orderinfo['order_no'], $receipt, $resp_str);
}
}
} else {
Log::info('通知傳遞的密碼不正確--password:'.$password);
}
}
}
private function toTimeZone($src, $from_tz = 'Etc/GMT', $to_tz = 'Asia/Shanghai', $fm = 'Y-m-d H:i:s')
{
$datetime = new \DateTime($src, new \DateTimeZone($from_tz));
$datetime->setTimezone(new \DateTimeZone($to_tz));
return $datetime->format($fm);
}
private static function arraySort($arr, $key, $type='asc')
{
$keyArr = []; // 初始化存放陣列將要排序的欄位值
foreach ($arr as $k=>$v){
$keyArr[$k] = $v[$key]; // 迴圈獲取到將要排序的欄位值
}
if($type == 'asc'){
asort($keyArr); // 排序方式,將一維陣列進行相應排序
}else{
arsort($keyArr);
}
foreach ($keyArr as $k=>$v){
$newArray[$k] = $arr[$k]; // 迴圈將設定的值放入響應的下標下
}
$newArray = array_merge($newArray); // 重置下標
return $newArray[0]; // 資料返回
}
登入後複製
以上就是總結分享php是如何處理IOS自動續費!的詳細內容,更多請關注TW511.COM其它相關文章!