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

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

WBOY
Release: 2016-06-06 20:44:55
Original
1386 people have browsed it

服务器环境 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>
Copy after login
Copy after login

回复内容:

服务器环境 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>
Copy after login
Copy after login
Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template