0

我正在使用 html5 创建一个应用程序并使用 phonegap 进行编译,所以我正在尝试为黑莓网络集成和使用 pushwoosh 插件,这样我就可以发送和接收通知,但我被困在某个地方,来自他们网站上的教程

http://www.pushwoosh.com/programming-push-notification/blackberry/blackberry-additional-platforms/blackberry-html5-webworks-push-notification-sdk/

我不知道在哪里包括这个,

“PushWoosh.appCode = '6C3BE-1B140';”

有人可以详细说明一下吗,谢谢

4

1 回答 1

0

试试这个代码:

<script src="http://code.jquery.com/jquery-1.8.2.min.js" type="text/javascript"></script>
<script src="pushwoosh.js" type="text/javascript"></script>
<script>PushWoosh.appCode = 'YOUR_PUSHWOOSH_APP_ID';</script>
 
<script src="master.js" type="text/javascript"></script>

用 script 标签包裹 Pushwoosh.appCode。

于 2013-10-11T07:46:46.860 回答