1

我正在使用城市飞艇发送推送通知,我在我的应用程序中完成了所有配置,我可以从城市飞艇网站发送通知。

现在我必须请求城市飞艇 api 来发送推送通知(使用这个“ https://go.urbanairship.com/api/push/”)URL,我已经发送了这样的 json

{
    "apids": [
        "some APID",
        "another APID"
    ],
    "aliases": ["my_alias"],
    "tags": ["tag1", "tag2"],
    "android": {
         "alert": "Hello from Urban Airship!",
         "extra": {"a_key":"a_value"}
    }
}

我想为单个设备发送推送通知,我必须使用 APID,不是吗?

什么是 APID?

编辑

这个 groovy 推送请求代码

@Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.5.0' )
import groovyx.net.http.*
import static groovyx.net.http.ContentType.*
import static groovyx.net.http.Method.*

       def http = new HTTPBuilder('https://go.urbanairship.com')
       http.request( POST ) {
         uri.path = '/api/push/'
         body = [android: 'alert: You have reply', apids: 'some apid']
         requestContentType = ContentType.JSON

         response.success = { resp ->
           println "Success! ${resp.status}"
         }
       }

但它不工作?

4

1 回答 1

1

APID 将在设备尝试注册时生成(每个设备的唯一 ID),使用 APID 我们可以向特定设备发送推送通知。

这里解释了如何向 Urban airship 发送请求, Java code for send request to urban airship

于 2012-11-24T05:19:26.340 回答