我们开发了一款带有GX15 U5的SD应用程序,它使用One Signal API发送和接收推送通知。这很好。
但是当我从使用GX Ev3 U11开发的Web面板发送推送通知以在主SD面板上调用事件时,这不会发生。用于从Web面板发送的代码如下:
&PushConfigProperties = OneSignalPushConfig()
&GXPushNotification.Alert= 'Mi Notificacion'
&GXPushNotification.Title='Title'
&GXPushNotification.Badge = '1'
&GXPushNotification.Event.Name='Acerca_De'
&GXPushNotification.Event.Execution = EventExecution.OnNotificationArrive
&ProviderDeviceId ='11f3cfc0-569d-4e30-a6dc-a60308489a31'
&GXPushOperationResult = PushSendMessageDevice(&PushConfigProperties,
&GXPushNotification, &ProviderDeviceId, 2)
主SD面板上存在Acerca_De事件
导致不执行此事件的原因是什么?