How to register a userId to Bluemix Push Notificat

2019-02-19 09:27发布

the REST API documentation for Bluemix Push Notification services states that the possible push notification targets are deviceIds, platforms, tagNames and userIds.

I don't understand how you register a userId for a device ? I don't see any REST service that seem to take a userId in its inputs...

Thanks for your help,

Sebastien

1条回答
我命由我不由天
2楼-- · 2019-02-19 10:03

There is a deviceId that you can set from the REST API when using the POST devices call to register a device.

In the DeviceRegResponseModel is userId (string, optional): The user identifier for the the device registration

So essentially to set a userId you'll just want to add that to the json you send when registering a device through the REST API. So just modifying the example the REST API gives for the body:

{
  "deviceId": "TestDeviceId",
  "platform": "A",
  "token": "************",
  "userId": "John"
}

And then you can use the POST messages call with "userId": "John" in your target body to send that message to all devices registered with the userId "John".

Hope this helps.

查看更多
登录 后发表回答