Joel
Joel

Reputation: 16134

Documentation for Azure Notification Hub in Mobile Services server script

The documentation for Azure Mobile Services server script does not contain any information for the Notification Hub object you can create by calling:

var azure = require('azure');
var hub = azure.createNotificationHubService('<hub name>', '<connection string>');

Does the documentation exist for this object?

I am trying to figure out the syntax to send a Template notification with a specific tag (the user id).

Upvotes: 1

Views: 581

Answers (1)

carlosfigueira
carlosfigueira

Reputation: 87323

That object is comes from the Azure SDK for Node.js, which is available in GitHub. You can find the documentation specificatlly about notification hubs there as well, in the section about notification hubs.

Upvotes: 1

Related Questions