我正在向所有設備發送推送通知,並且爲此我創建了基於標記的推送通知的適配器,如下所示。從PHP腳本調用適配器
function sendTagNotification(applicationId, notificationText, notificationTags) {
var notificationOptions = {};
notificationOptions.message = {};
notificationOptions.target = {};
var tags = notificationTags.split(",");
notificationOptions.message.alert = notificationText;
notificationOptions.target.tagNames = tags;
WL.Server.sendMessage(applicationId, notificationOptions);
return {
result : "Notification sent to users subscribed to the tag(s): '" + notificationTags + "'."
};
}
現在我們想的辦法是,我們將具有PHP腳本,將信息內容發送到工作燈適配器和sendTagNotification
適配器將收到的郵件內容,並將其發送給所有移動用戶。
那麼有什麼辦法從PHP腳本調用適配器?
我們的客戶端使用'v 6.3',所以我想我必須選擇第二個選項,我瞭解url部分訪問適配器,但我怎麼可以傳遞參數 – Hunt
我得到'java.lang.RuntimeException:java.io.FileNotFoundException:找不到文件:/ adapters/WLPush/sendTagNotification' 我的終點是' http://192.168.100.32:10080/RR_MobileApp/adapters/WLPush/sendTagNotification' – Hunt
其實如果你使用6.3那個URL結構將不起作用。它假定REST也是7.0和更高版本的一部分......嗯。我會盡快回復你... –