I've found this how-to guide on sending push notifications with in a Node.js application, however, it seems to be using the now unsupported azure-sdk-for-node sdk. The new recommended javascript (azure-sdk-for-js) sdk is found here, however, I'm…
I am developing a Microsoft 365 / Office 2013 - 2021 Taskpane Add-in using Visual Studio Code that is written in JavaScript. The meat and potatoes of the add-in work. It's the sides that are causing trouble. To elaborate, I find myself stuck…
I am designing my first dev tool with the Azure SDK (JavaScript), and I am having a difficult time understanding how to authenticate users in production so the dev tool can access the user's Azure account. The tool is going to retrieve metrics from…
I'm looking for some advice on how to set up a MQ system using Azure Service Bus with React Native. I'm trying to set up a (food) ordering system, but I'm facing a few problems.
For Azure Service Bus to work, the Azure Service Bus SDK is…
UPDATES:
I have updated the function to provide wide timeframe to avoid expiration. I also am including screenshot of my account settings which I updated to enable public access. Also including current console results. Same result on the page that…
How the following code makes a call to odata function, is this a new language feature? what is the name of this new language feature and where can I find its reference?:
const { odata, TableClient } = require("@azure/data-tables");
const…
I am trying to use the Azure SDK for Javascript to list all the resources within an Azure subscription. My approach has been to authenticate using the @azure/ms-rest-nodeauth package and then call ResourceManagementClient from the…
I want to upload a batch of 64 images to Custom Vision using the JavaScript SDK.
const files: ImageFileCreateEntry[] = []
while (i < 64) {
const data = fs.readFileSync(`${sampleDataRoot}/${tag.name}/${file}`)
const fileEntry:…
I'm trying to generate a new auth token with beginCreateAndWait, but passwords are not being generated with the token, I'm getting an empty array in token.credentials.passwords and when looking in the Portal, no passwords were generated for the…
The bottom code is what I am using to query log analytics. All I am getting are results with the column names only, but no actual data. I have already logged in to my azure using the CLI. Have set up the right workspace ID as well. Do I have to…
I'm struggling to enable automatic log collection for @azure/arm SDKs. Currently, I'm using @azure/arm-keyvault, @azure/arm-network and @azure/arm-resources. Is there some extra configuration needed? I thought HTTP logs are collected…
I am using Azure Servicebus session based queue and the code we have used as listener is https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/servicebus/service-bus/samples/v7/javascript/advanced/sessionRoundRobin.js.
We are noticing a behavior…
In azure cli the command
az storage blob upload-batch --source --destination-path --destination
is it available the same api in the javascript sdk @azure/storage-blob or in another package?
Thank…
I need to create a NodeJS Azure Function that should create Azure AD Groups based on some logics. My question is which SDK to use for this scenario? I have been googling for the past few days and got lost in the Microsoft Documentation jungle.
My…
I'm having some trouble creating a Function App with the Azure JavaScript SDK. I'm able to create the app, but there are no configuration variables added, and the runtime isn't set either.
I'm using @azure/arm-appservice and trying to follow the…