使用PHP后端在通知中心注册

时间:2017-08-03 01:57:17

标签: php cordova azure push-notification azure-notificationhub

对于用户requeriments,后端必须是PHP,而app客户端是Ionic 2.基于:

https://msdn.microsoft.com/en-us/library/azure/dn223265.aspx https://github.com/Azure/azure-notificationhubs-samples/tree/master/notificationhubs-rest-php https://github.com/webwarejp/notificationhubs-rest-php

Create Registration Notification Hub Azure PHP 重要

我在php API中创建了这个方法:

    $uri = $this->endpoint . $this->hubPath . "/registrations".NotificationHub::API_VERSION;
    /* print($uri); */
    $ch = curl_init($uri);
    $token = $this->generateSasToken($uri);
    $headers = [
        'Authorization: '. $token,
        'Content-Type: '."application/atom+xml;type=entry;charset=utf-8",
        'x-ms-version: 2015-01',
        'Content-Length: 0'
    ];
    $body = $this->getXmlAndroid($registrationId, $tag);
    print_r($body);
    curl_setopt_array($ch, array(
        CURLOPT_CUSTOMREQUEST => 'POST',
        CURLOPT_RETURNTRANSFER => TRUE,
        CURLOPT_SSL_VERIFYPEER => FALSE,
        CURLOPT_HTTPHEADER => $headers,
        CURLOPT_POSTFIELDS => $body
     ));
    $response = curl_exec($ch);
        // Check for errors
    if($response === FALSE){
        print_r(curl_error($ch));
        throw new Exception(curl_error($ch));
    }

    $info = curl_getinfo($ch);
    print_r($info);
    curl_close($ch);

getXmlAndroid方法是带有GCM ID的简单返回xml格式

private function getXmlAndroid($registrationId){
    return '<?xml version="1.0" encoding="utf-8"?>
            <entry xmlns="http://www.w3.org/2005/Atom">
                <content type="application/xml">
                    <GcmRegistrationDescription xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect">
                        <GcmRegistrationId>'.$registrationId.'</GcmRegistrationId> 
                    </GcmRegistrationDescription>
                </content>
            </entry>';

 }

我在Ionic 2 app中使用此功能获得GcmRegistrationId。

import { Push, PushObject, PushOptions } from '@ionic-native/push';
....
const options: PushOptions = {
  android: { senderID: 'MyIDFirebaseProject'},
  ios: { alert: 'true', badge: true, sound: 'false'},
  windows: {}
};
pushObject.on('registration').subscribe((registration: any) => {
 console.log(registration.registrationId);
});

问题始终是请求Notification API返回中的注册方法

[http_code] => 400

其中400表示“无效的请求正文。由于请求格式错误,无法创建注册。”。我不明白为什么会这样。

1 个答案:

答案 0 :(得分:6)

为什么发送Content-Length:0标头?这可能会导致问题。

相关问题