one Azure mobile service NotificationHub to send Push Notifications to Two Different IOS Apps -


we using azure mobile service node end server. using notification hub push notify our ios , android clients. however, have 1 more requirement develop admin portal app in ios.

so,we going develop 1 separate app admin portal.this app has requirement send push notification. means azure mobile service have send notifications existing ios , android app new ios admin app.

my doubt is, can send push notification 2 different clients of ios single azure mobile services notification hub? because when checked push configuration on azure portal shows 1 .p12 file upload provision.

in case 2 different .p12 files i.e. 1 uploaded existing ios client , 1 have upload ios admin app.

can me or guide me right path? quite new azure mobile services. searched lot regarding topic did not related scenario.

will possible send push 2 separate ios clients pointing same azure mobile service notification hub? or have create separate mobile service that?

you need separate notification hub each app. can keep mobile service using existing notification hub main app, , create new notification hub admin app.

then in node scripts admin app need register devices or send notifications, use 'azure' npm connect admin app notification hub, described in this article. mobile services node backend includes azure npm, can skip running 'npm install azure'.

var azure = require('azure'); var notificationhubservice = azure.createnotificationhubservice('hubname','connectionstring'); 

Comments

Popular posts from this blog

java - Could not locate OpenAL library -

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

sorting - opencl Bitonic sort with 64 bits keys -