我尝试使用notificationHub
SDK调用node.js
服务API。我生成了密钥"令牌"按照documentation
然后在我的node.js
应用中,我有以下代码:
const client = new notificationHubsClient(AZURE_KEY, AZURE_SUBSCRIPTION_ID);
console.log('the client', client);
但是我收到了这个错误:
UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: credentials argument needs to implement signRequest method
到目前为止,使用我之前生成的令牌作为凭据,不确定是否正确,来自docs:
var client = new notificationHubsClient(credentials, 'your-subscription-id');