透過
class VerifyCsrfToken extends BaseVerifier
{
protected $except = [
'/pay/paynotify',
];
}
讓'/pay/paynotify',可以POST接收其他domin的資料
不過接收到的資料都會被加上 http header
POST /pay/paynotify
HTTP/1.1
Accept: */*
Content-Length: 463
Content-Type: application/x-www-form-urlencoded
Host: host.domin.com
User-Agent: stpath
JSONData=
想請問這樣要怎麼樣處理這些資料,才可以把這些被自動加上http header的資料刪掉