Questions tagged [azure-node-sdk]

89 questions
6
votes
1 answer

Deploying a Node app on Azure Functions

I am wondering about how it might be possible to deploy a Node.js app on Azure Functions. Basically, I have a function setup and running a basic hello world http example that looks like: module.exports = function (context, req) { …
6
votes
2 answers

How to register devices to Azure Notification Hub from server side(with NodeJS sdk) ?

I am developing a windows phone 8.1 App (RT), I am trying to push notification with Azure Notification Hub. I am able to do it with the client side SDK available. But I want to do the device registration, tagging etc. from the server side. I see a…
6
votes
0 answers

Failed requests from Azure topic/subscription at random

I am using Azure's service bus (topics/subscriptions specifically) to send messages back and forth. Seemingly at random, when sending a message to the topic, the message seems to be disappearing and no errors are thrown. If I look at the chart in…
Seth
  • 1,353
  • 1
  • 8
  • 17
3
votes
1 answer

How to cancel an upload started with BlobService.createBlockBlobFromBrowserFile?

I'm using Microsoft Azure Storage Client Library's BlobService.createBlockBlobFromBrowserFile to allow users to upload files to an Azure Storage container. I'd like to provide a way for them to cancel an in-progress upload, e.g. in case it's big and…
Rory
  • 40,559
  • 52
  • 175
  • 261
3
votes
1 answer

In Azure, how do I deploy functionapp code without using git?

I created a Resource Manager template which has the Resources to run a function app basically using the default template for this purpose and I can manually copy files to my File Storage under sites\wwwroot and when I curl the functionapp it…
justin.m.chase
  • 13,061
  • 8
  • 52
  • 100
2
votes
1 answer

Programmatically declare a parent-child relationship between the devices in IoT Hub using Node SDK

Using the Node SDK, I have programmatically created devices in IoT Hub. I wish to know if the Node SDK provides me the capability to set a device as a child of another device. Looking at the documentation, I didn't find a way (using SDK). Is there…
2
votes
1 answer

How to extract Secret key from Azure key vault in Azure Function App on Nodejs stack

I have created an Azure Function app in Nodejs version 12. My hosting environment is windows. What is the easiest way to capture the username and password which are saved in Azure key vault inside my function. Also I am using Inline code Editor so…
2
votes
2 answers

ms-rest-nodeauth (azure-sdk-for-js) : Error: credentials argument needs to implement signRequest method

Trying to follow the samples from https://github.com/Azure/ms-rest-nodeauth When passing authresponse to a client to generate a client to ping resources, I end up getting: Error: credentials argument needs to implement signRequest method I am trying…
Jamie
  • 71
  • 6
2
votes
1 answer

Read content from Azure blob storage in node API

I am new to azure and working on the storage account for one my application.Basically I have json files stored in azure blob storage. I want to read the data from these files in Node JS application and do some filtering on the data, which is…
jithu reddy
  • 849
  • 1
  • 10
  • 19
2
votes
1 answer

How to force http instead of https in DocumentDB Node.js SDK

Our corporate network is blocking https calls outbound and it seems that any call to documentDB is by default a https call so they aren't making it through and the connection gets closed. I am using the Node.js Azure SDK. Is there a way to override…
RandomDeduction
  • 565
  • 1
  • 5
  • 17
2
votes
1 answer

How to query Azure Blobs by modification date using azure-storage-node

I'm using the Azure Blob Storage node library: https://github.com/Azure/azure-storage-node I've referred to this documentation: https://github.com/Azure/azure-content/blob/master/articles/storage-nodejs-how-to-use-blob-storage.md I can do most blob…
Yaron
  • 1,867
  • 20
  • 16
2
votes
1 answer

Azure ServiceBus Token Expired

I am accessing Azure ServiceBus using NodeJS and it worked fine for several days. All of a sudden, I started receiving an error Subscription Deletion Error :Error: 401 - ExpiredToken: . TrackingId:xxxxxx-xxxxxxx,TimeStamp:4/8/2015 12:32:54 PM I am…
GeekzSG
  • 943
  • 1
  • 11
  • 28
2
votes
1 answer

Node.js running on Azure Website max file upload

I am running an Express website on an Azure Website instance (note I say Azure Website, not Azure Webrole) Initially, uploading large files failed with an HTTP 500 error. After much research, I found that the solution is to manually adjust the value…
Luis Delgado
  • 3,644
  • 4
  • 34
  • 54
2
votes
1 answer

Error authenticating with Azure using node sdk:

I am following the tutorial Windows Azure SDK for Node.js - Compute Management to manage virtual machines. I downloaded the pem file using azure account cert export to .pem. The script currently contains: var subscriptionId…
Dustin Kingen
  • 20,677
  • 7
  • 52
  • 92
1
vote
2 answers

How to detect new entities in Azure Table Storage

I have an existing system which uploads entities to Azure Table Storage in response to usage of our product. I am tasked with keeping a separate analytics system up to date with a copy of all entities stored in Azure Table Storage. I have written a…
Marc O'Morain
  • 3,699
  • 5
  • 28
  • 34
1
2 3 4 5 6