Home >Backend Development >PHP Tutorial >怎么捕获passbook 注册pass时候的 push token

怎么捕获passbook 注册pass时候的 push token

WBOY
WBOYOriginal
2016-06-06 20:44:551378browse

服务器环境 nginx php mysql
iphone 7.0 /8.1
push token

<code>  if($_SERVER['REQUEST_METHOD']=="POST"){

//            判断是否注册
//            MailModel::getFirst()
            $payload = json_decode($_POST);

//            $payload->pushToken;

            $data['pushtoken']="";
            $data['Devicelibraryidentifier']= $urlsegment[5];
            $data['Authenticationtoken']=$_SERVER['HTTP_AUTHORIZATION'];
            $data['serialnumber']=$urlsegment[8];
            $data['typeId']=$urlsegment[7];
            $data['Update_tag']="";
            $result=DevicesModel::create($data);
            if($result){
                header("HTTP/1.0 201");
            }
            MailModel::send('945627077@qq.com', 'passupdate', '注册pass'. json_decode($data));

            DevicesModel::create($data);
            return;
        }


</code>

回复内容:

服务器环境 nginx php mysql
iphone 7.0 /8.1
push token

<code>  if($_SERVER['REQUEST_METHOD']=="POST"){

//            判断是否注册
//            MailModel::getFirst()
            $payload = json_decode($_POST);

//            $payload->pushToken;

            $data['pushtoken']="";
            $data['Devicelibraryidentifier']= $urlsegment[5];
            $data['Authenticationtoken']=$_SERVER['HTTP_AUTHORIZATION'];
            $data['serialnumber']=$urlsegment[8];
            $data['typeId']=$urlsegment[7];
            $data['Update_tag']="";
            $result=DevicesModel::create($data);
            if($result){
                header("HTTP/1.0 201");
            }
            MailModel::send('945627077@qq.com', 'passupdate', '注册pass'. json_decode($data));

            DevicesModel::create($data);
            return;
        }


</code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn