Skip to main content

Microsoft Azure Collective

Questions

Browse questions with relevant Microsoft Azure tags

14,046 questions

Has recommended answer
1 vote
1 answer
30 views

How to add service principal to enterprise application role

I can add users via Azure portal but it does not allow me to add service principals. I extracted the web call what my browser does: Invoke-WebRequest -UseBasicParsing -Uri "https://graph....
Kamsiinov's user avatar
  • 1,501
Answer Accepted

my app registration object id as principal id Roles are not assigned to app registrations. The error message is really confusing though if this is the reason. Anyway, you need to use the object ID of ...

View answer
juunas's user avatar
  • 59.6k
Advice
0 votes
2 replies
59 views

Ways to Improve Bulk-Insert Throughput in Azure SQL

I’m attempting high-volume bulk inserts into Azure SQL, but the performance is lower than expected. One known factor is the Max Log Rate (MiB/s) limit, which depends on the service tier (see Microsoft’...
Bill's user avatar
  • 590
Answer

My suggestion use non-durable memory-optimized table to speed up data ingestion, while managing the In-Memory OLTP storage footprint by offloading historical data to a disk-based Columnstore table. ...

View answer
Alberto Morillo's user avatar
1 vote
1 answer
23 views

Azure AD B2C IdP-initiated SSO : REST TP receives literal {QueryString:...} tokens instead of actual query values

We are building an IdP-initiated SSO flow using Azure AD B2C custom policies, where the journey must: Read 3 querystring values: enc_attrs_token, sp, and EntityId Pass them to a backend REST API via ...
TNBG's user avatar
  • 13
Answer Accepted

Where did you find that {QueryString:}? It's not mentioned in the docs: https://learn.microsoft.com/en-us/azure/active-directory-b2c/claim-resolver-overview#oauth2-key-value-parameters. You need to ...

View answer
juunas's user avatar
  • 59.6k
0 votes
1 answer
38 views

Call SharePoint Api using Power Automate "Http" by passing App registration clientID/Secret

I have created an Azure App registration, and granted it permissions to manage SharePoint sites. then i want to query the SharePoint sites' users, using SharePoint API, here the first request to get ...
John John's user avatar
  • 7,367
Answer Accepted

This is from LogicApps but is exactly the same concept as PowerAutomate and this works ... This is the URL specified in the variable which, as you can see, is calling a classic SP REST API ... A ...

View answer
Skin's user avatar
  • 11.7k
1 vote
1 answer
65 views

Azure Storage blob upload filename collision with UUID

During performance test we got some error from Azure Storage saying that com.azure.storage.blob.models.BlobStorageException: Status code 409, "BlobAlreadyExistsThe specified blob already exists. ...
Viktor's user avatar
  • 1,519
Answer

Azure Storage SDK does, indeed, have a default retry mechanism built in. Most likely, the issue you're running into stems from partially completed uploads. Since you're performance testing, the most ...

View answer
akseli's user avatar
  • 3,089
1 vote
1 answer
24 views

Azure Function app Cron scheduler - missing runs

My function app is a timer triggered app and uses this cron expression for scheduling. 10 */6 * * * On most days it runs fine, but looking at the trace logs in Application insights it does not run for ...
katie77's user avatar
  • 1,851
Answer

Azure Functions doesn't actually use CRON expressions, but rather, NCRON expressions. Instead of the typical 5 elements from a CRON expression, NCRON expects 6 elements: {second} {minute} {hour} {day} ...

View answer
akseli's user avatar
  • 3,089
Best practices
1 vote
3 replies
65 views

.NET - Messaging - Where to place shared contracts

I have a question about sharing contracts between services using a message broker (more specifically, Azure Service Bus). I searched for it in various articles and asked a chatbot, but I didn't get a ...
pietro's user avatar
  • 221
Answer

The two approaches are both valid. The benefit of having multiple packages with package per service, is the ability to pull in just what you need. Additionally, no need to update packages for the ...

View answer
Sean Feldman's user avatar
  • 26.3k
2 votes
1 answer
48 views

Remove Microsoft Identity Platform as a service dependency

I'll preface by stating I don't have in depth knowledge of Azure. I have an ASP.NET Core Azure web app, that I was able to successfully publish about 3 weeks ago. I tried to publish a new version (to ...
Nestor's user avatar
  • 47
Answer

Your issue is the fact that you're attempting to use a managed identity to connect to your SQL server. If this isn't correctly setup, the connection will obviously fail. Whilst you didn't ...

View answer
akseli's user avatar
  • 3,089
0 votes
1 answer
36 views

azure service bus message not getting deleted from queue after triggering container app job and im not able to read message paylaod

I’ve set up an Azure Container Apps Job that is triggered by an Azure Service Bus queue. The job runs successfully each time a message is pushed to the queue, however the message is not removed from ...
the programmer's user avatar
Answer

Based on what you're describing, your ACA job either times out or crashes. Hence, the message is not removed, and you cannot get the payload. By default, once the ACA job successfully processes a ...

View answer
Sean Feldman's user avatar
  • 26.3k
1 vote
1 answer
65 views

Azure Document Intelligence API Not Returning Query Fields When Using Layout Model

I am trying to query a PDF document field using Azure Document Intelligence with the Layout Model. Initially, I tested it in the Document Intelligence Studio by uploading the file and adding the query:...
Venkatesh's user avatar
Answer

The issue you're running into is a missing features=queryFields flag in your POST: prebuilt-layout API call. The prebuilt-layout model is intended for extraction of pages, paragraphs, tables from your ...

View answer
akseli's user avatar
  • 3,089
0 votes
1 answer
70 views

Azure function calling protected API using Azure AD App Registration (Client Credentials Flow not working) [closed]

I have an Azure AD App Registration where I've exposed an API scope called AppUser. This scope is being used for authentication in my Web API project, and everything works fine when the API is called ...
Backend Development's user avatar
Answer

You should define an app permission (aka app role) and assign it to the other app. Docs: https://learn.microsoft.com/en-us/entra/identity-platform/howto-add-app-roles-in-apps Scopes are only contained ...

View answer
juunas's user avatar
  • 59.6k
-1 votes
2 answers
235 views

Azure SQL S0 Tier – Slow Update Performance During Peak IoT Data Processing

I'm using Azure SQL (Standard S0: 10 DTUs) to store data from various IoT devices. Each IoT device sends messages to my Azure IoT Hub, which then triggers an Azure Function App. The Function App ...
DJDJ's user avatar
  • 763
Answer

Since you chose S0, regarding data storage, the Standard S0 and S1 service tiers are placed on Standard Page Blobs. Standard Page Blobs use hard disk drive (HDD)-based storage media and are best ...

View answer
Alberto Morillo's user avatar
0 votes
1 answer
54 views

'metadata_storage_name' always null: Missing or empty value '/document/blob_name'

Using Azure's AI Search Service to chunk and read textfiles, the target field values are always NULL. I tried using a simplified example, just for the fields metadata_blob_name / title and ...
Jonathan's user avatar
  • 2,107
Answer Accepted

It seems that your indexer is missing some field mappings for blob_name and blob_path. You might want to explicitly map the fields so they are correctly received by your skillset. Add these two ...

View answer
akseli's user avatar
  • 3,089
1 vote
1 answer
86 views

Unable to generate Microsoft OAuth Refresh token

I am trying to setup a Microsoft Entra based OAuth using @azure/msal-node package and unable to generate the refresh token. Use-case: Access the APIs once the user authenticates and keep using the ...
Atharva Unde's user avatar
Answer

Are you sure you are not getting a refresh token? MSAL hides refresh tokens within it so that it handles token refresh. You only need to call acquireTokenSilent every time that you need a token. MSAL ...

View answer
juunas's user avatar
  • 59.6k
0 votes
1 answer
174 views

Azure Function App (Isolated) with Service Bus + Managed Identity → Getting 401 Unauthorized

We’re trying to connect an Azure Function App (Isolated process) to an Azure Service Bus Queue using a Managed Identity, but we’re constantly hitting a error when function start. Setup Function App (....
Shlok Jadeja's user avatar
Answer Accepted

According to the documentation: The connection property for the ServiceBusTrigger attribute should be: ServiceBusConnection You should have an appsetting ...

View answer
Thomas's user avatar
  • 30.5k
1 vote
1 answer
184 views

How can I reduce memory exposure of client secrets when using ClientSecretCredential in Azure SDK?

I’m using the Azure SDK to connect to Service Bus with a ClientSecretCredential: var credential = new ClientSecretCredential( tenantId, clientId, clientSecret); var client = new ...
Dave Morrison's user avatar
Answer

Is there a way to use SecureString or some other in-memory protection with ClientSecretCredential? No. You could use ClientCertificateCredential instead to utilize a certificate. But in that case too ...

View answer
juunas's user avatar
  • 59.6k
0 votes
1 answer
171 views

AADB2C90018: The client id <client-id> specified in the request is not registered in tenant <tenant>

I am trying to create an app registration for a UI app in Azure AD B2C and use it in a Sign In flow. If the app registration is created manually using the Azure Portal, when I run the Sign In user ...
Mateusz Bas's user avatar
Answer Accepted

There are three steps to creating an application in Azure AD B2C using Microsoft Graph: Create the application Create a service principle representing the application Grant delegated permissions to ...

View answer
Dave D's user avatar
  • 9,210
-1 votes
2 answers
176 views

For Azure AD B2C, can we enable MFA only for local logins, and leave disabled for social logins? [closed]

Our system uses User Flows, not custom policy, and is a React SPA. We currently use local accounts for logins, with MFA enabled. Now I have enabled a social login for Google SSO. When users login with ...
David Russell's user avatar
Answer

Not directly, as a configuration of the user flow, no. Your best option is probably to add one of those sets of users to a group and then have a Conditional Access policy that only applies to people ...

View answer
Dave D's user avatar
  • 9,210
0 votes
1 answer
108 views

How to add days to a date in Azure Logic Apps?

I need to calculate a date in Azure Logic Apps by adding 30 days to the date the logic app ran, like the following: originalDate=(Date Logic App Ran) quarantineDate=((Date Logic App Ran) + 30 Days) ...
Andrew Zimmer's user avatar
Answer

Dates in Logic Apps are represented as strings. You can use the built in functions to operate on them, but the date parameter is a string. For instance, if you want to capture the current UTC date ...

View answer
Joel Cochran's user avatar
  • 7,773
0 votes
1 answer
139 views

Azure App Registration cannot get token from another app

I created a new Azure App Registration (App1) and exposed as an API. The MS Graph API permission which it has is: Application.ReadWrite.OwnedBy - Application (Admin consent granted) GroupMember.Read....
Container-Man's user avatar
Answer

This is a feature of Entra ID that I've mentioned in a blog article. It is possible for an application in Entra ID to get an access token with the client credentials flow for any API in that same ...

View answer
juunas's user avatar
  • 59.6k
-1 votes
2 answers
218 views

Approval stage in Azure Devops

I am working on Azure Devops pipeline where I have multiple stages. The customer wants me to put an approval stage before the final deployment stage; and this approval should be asked every time the ...
Deepak D's user avatar
Answer

It is possible with the manual validation task. But note that anyone who has the rights to run that pipeline can also approve this. So it's not very good but does do what you want, in that it'll stop ...

View answer
juunas's user avatar
  • 59.6k
-1 votes
1 answer
53 views

Re-send dead letter message in Azure Bus [closed]

I have a topic with many subscribers (A, B, C). One of this (ex. B) failed to process a message and now, message is in dead letter for that subscriber. Fixed the problem, i need to reprocess this ...
erikscandola's user avatar
  • 2,956
Answer Accepted

What's the current behaviour when I push that button? The message will be re-send in topic and reprocessing by all subscribers (A, B, C) or are reprocessing only by current subscriber (B)? It will be ...

View answer
Gaurav Mantri's user avatar
1 vote
1 answer
169 views

How to compare many commits in the same branch between specific commit and current HEAD version in Azure Devops Repos ui

I am using Azure Devops Repos. I have one branch: "master", with this history: * 🔵 HEAD - Commit 7: Fix production bug (sha: 1a2b3c4) | * Commit 6: Add health checks (sha: a1b2c3d) | * ...
fascynacja's user avatar
  • 3,186
Answer Accepted

Based on this extension's source code, it seems it is possible through a custom URL, e.g. https://dev.azure.com/yourdevopsorg/_git/yourrepo/branchCompare?baseVersion=GCsourcecommithash&...

View answer
juunas's user avatar
  • 59.6k
1 vote
1 answer
88 views

ASP.NET Core web app with EntraId: the signin-oidc url

I registered my application, with CallbackPath=/signin-oidc. In my Program.cs, after app.UseAuthentication(); app.UseAuthorization(); I added: app.Use(async (context, next) => { if (...
TreeMan's user avatar
  • 11
Answer

The middleware registered here app.UseAuthentication(); intercepts the request to /signin-oidc as that is the configured callback path. It handles the response and then does a redirect to the page the ...

View answer
juunas's user avatar
  • 59.6k
0 votes
1 answer
77 views

How to use for each item inside copy activity source SQL query in ADF

I’m working in Azure Data Factory. I have a Lookup activity that gets a list of authors from a SQL table. Then, in a ForEach loop, I want to run a Copy activity for each author to fetch only that ...
Neiko's user avatar
  • 1
Answer

Use Concat option : @concat('SELECT * FROM table WHERE author ="', item().author,'"') Assuming you dont need quotes within the values

View answer
Nandan's user avatar
  • 5,225
0 votes
1 answer
83 views

Title: How to restrict public access to only one specific API in Azure API Management (APIM)?

I’m using Azure API Management and currently all APIs are publicly accessible. I want to restrict one specific API so that it’s not accessible over the public internet, while keeping all other APIs ...
MI TV's user avatar
  • 1
Answer

API level inbound policy that adds IP restrictions might be the simplest. <policies> <inbound> <base /> <ip-filter action="allow"> <address-range ...

View answer
juunas's user avatar
  • 59.6k
1 vote
1 answer
42 views

Azure Event Hubs to share specific partitions with specific consumer groups

How can we ensure that the right consumer groups receive the right events (i.e., "Project Creation" events for Consumer Group D and "Project Update" events for Consumer Groups A, B,...
Prathamesh Danej's user avatar
Answer Accepted

It's not possible in Event Hubs. All consumer groups see all events. In the Event Hubs model, it is the consumer's responsibility to filter out irrelevant events. You should consider using Service Bus ...

View answer
juunas's user avatar
  • 59.6k
2 votes
2 answers
123 views

Issue with Publishing messages to Azure signalR from Azure function

I have Azure SignalR service with a "default" mode. I have to use "default" mode since I'm going to connect to this from a set of Blazor server applications as well and I have an ...
Kasun Jalitha's user avatar
Answer

According to Microsoft's official documentation, Azure Functions only supports SignalR in Serverless mode, not default. There are a few workarounds that allow you to manually send SignalR messages ...

View answer
akseli's user avatar
  • 3,089
0 votes
1 answer
63 views

QR code URI is correct but QR code not displaying on Azure AD B2C Custom Policy form [closed]

Implementing TOTP MFA in Azure AD B2C custom policy. The QR code URI (qrCodeContent) is being generated correctly and matches the expected format (e.g., otpauth://totp/Test:[email protected]?secret=...&...
Ret 2's user avatar
  • 113
Answer Accepted

It looks like your page layout version in your ContentDefinition is too old for the page to support TOTP. You've reference v1.2.0 but TOTP wasn't added until v2.1.9 of the self asserted page layout. ...

View answer
Dave D's user avatar
  • 9,210
0 votes
2 answers
83 views

QR Code Not Displaying in Custom Policy TOTP Setup – qrCodeContent Value Incorrectly Formatted

Description: Having issues with implementing TOTP MFA in an Azure AD B2C custom policy and are encountering a critical issue: the QR code does not render on the EnableOTPAuthentication page, and the ...
Ret 2's user avatar
  • 113
Answer

Your BuildUri claims transformation looks wrong to me, it's missing host (which definitely is supported) and it's specifying query string params incorrectly by missing the query. part. Based on the ...

View answer
Dave D's user avatar
  • 9,210
1 vote
1 answer
63 views

Schema Validation Errors with <ClaimsTransformations> in Azure AD B2C Custom Policy

I am experiencing persistent schema validation errors when uploading my Azure AD B2C custom policy, specifically related to the <ClaimsTransformations> section. The error message is not always ...
Ret 2's user avatar
  • 113
Answer Accepted

For all ClaimsTransformation definitions the InputClaims element must come before InputParameters which comes before OutputClaims (doc example). So, for example: <ClaimsTransformation Id="...

View answer
Dave D's user avatar
  • 9,210
0 votes
1 answer
59 views

./<bundle_name> --environment <environment_name> not working on azure console

I have an azure basic Todo App with db and have command in mu yml file to generate migration bundle and i am publishing my app to azure with db migrations using github sync from visual studio code . I ...
Heemanshu Bhalla's user avatar
Answer Accepted

Posting my comments as answer: Initially, the command using migrationsbundle and migrationsbundle1 was not recognized, as the generated file missing .exe extension. Upon reviewing the files provided ...

View answer
Pravallika KV's user avatar
0 votes
1 answer
76 views

Overriding default 5 min timeout for checkout repo step on Azure pipeline

In 99% of cases, our Azure pipeline checks out a repo in under 2 mins, but every once in a blue moon it takes over 5 minutes and gets cancelled automatically. I was wondering if this was configurable? ...
benjamin.keen's user avatar
Answer Accepted

As mentioned in MSDOC, the cancelTimeoutInMinutes setting allows you to define how long a job should continue running when runAlways is set, even if a previous task has failed. If not specified, the ...

View answer
Pravallika KV's user avatar
1 vote
1 answer
117 views

Azure won't show roleDefinition for directory roles

I'm using the following API, it works with regular roles such as "Reader":"acdd72a7-3385-48ef-bd42-f606fba81ae7". az rest --method get --url 'https://management.azure.com/providers/...
Daniel M.'s user avatar
  • 305
Answer Accepted

You can only retrieve Azure RBAC roles via ARM’s /roleDefinitions endpoint. Initially, I too got same results: az rest ` --method get ` --url "https://management.azure.com/providers/...

View answer
Sridevi's user avatar
  • 23.6k
0 votes
1 answer
64 views

Azure AD B2C Custom Policy: extension_inviteToken Not Passed to REST API Despite Correct Mapping

I am experiencing an issue with my Azure AD B2C custom policy where the extension_inviteToken claim, although present in the /authorize URL and audit logs, is not being passed to my REST API technical ...
Ret 2's user avatar
  • 113
Answer Accepted

If your invitation token is being passed in the query string of the authorize request then I'd recommend using a claims resolver to read the query string parameter directly in your API technical ...

View answer
Dave D's user avatar
  • 9,210
-1 votes
1 answer
103 views

Invalid Filename for Azure Blob Storage Upload?

I want to upload a file to my blob storage (text_vi.csv). I always get an error after 4 seconds: specified blob is invalid. I renamed the file to "text_vie.csv" and it works now. Any idea ...
DaSomes's user avatar
Answer

InvalidBlobOrBlock (Bad Request 400) 'filename' Upload failed after 4 seconds. According to this MS-Document, This issue is not related to the filename itself, but likely due to encoding, locale ...

View answer
Venkatesan's user avatar
  • 11.3k
0 votes
1 answer
118 views

Azure Function with Timer Trigger is Scheduled for every minute but runs every 5 minutes

I have a C# Azure Function that is scheduled to run every minute. The TimerTrigger attribute is set to %SchedulerInterval%, which in turn is set to 00:01:00. In Application Insights I see a system ...
Mike's user avatar
  • 874
Answer

It could be due to resource availability or runtime limitation, not a problem with your CRON schedule itself. If you are running the function on a Consumption Plan, Timer triggers may be skipped if ...

View answer
Pravallika KV's user avatar
0 votes
1 answer
101 views

Python script to join 2 csv files with an existing excel file in Azure blob storage

There is an excel file with 4 worksheets (named tab2, tab3, tab4 and tab6) in blob storage. I have a pipeline that generates 2 csv files. I want to add the 1st csv file into the said excel file with ...
Arty155's user avatar
  • 123
Answer Accepted

Failed to resolve 'odsblobcontainer.blob.odsblobcontainer.blob.core.windows.net' The error mentioned above is due to a DNS resolution issue. It occurs because the connection_string format is ...

View answer
Venkatesan's user avatar
  • 11.3k
0 votes
2 answers
116 views

How stop execution of a stored procedure if the client closes the connection in SQL Azure database?

I have a stored procedure that extracts historical information — a lot of historical information — but sometimes end users, perhaps by mistake or due to bad practices, send queries larger than they ...
Hugo Guadalupe Sánchez Ruiz's user avatar
Answer Accepted

SQL Server itself does not have visibility into whether the client is still listening or has abandoned the request. Once the stored procedure is invoked, it runs to completion unless: The client ...

View answer
Pratik Lad's user avatar
  • 8,728
1 vote
1 answer
145 views

Disabling Dependency Tracking - Azure Functions (Isolated, v4) - .NET 9

I'm struggling to disable dependency tracking in a project that uses Azure Functions (v4) using .NET 9 as an Isolated Process. I want to do this as these entries are clogging up our log files with ...
KevWhite82's user avatar
Answer

Disabling dependency tracking in isolated Azure Functions using host.json settings often may not take full effect as mentioned in the article. Use below custom ITelemetryProcessor to filter out ...

View answer
Pravallika KV's user avatar
0 votes
1 answer
104 views

Accessing an Azure Gen2 datalake from R in Azure Machine Learning Studio

I have data in an Azure Datalake Gen2 and I'd like to access it with R code from Azure Machine Learning Studio. Microsoft's own documentation of this suggests doing it via reticulate and Python: https:...
elskevdv's user avatar
Answer

But... what about AzurStor? That looks like a more direct R-based solution for this task, and it's on cran, but it hasn't been updated in three years. Does anyone know what the status is of this ...

View answer
Venkatesan's user avatar
  • 11.3k
2 votes
2 answers
193 views

How to update parameters.json file in logic app standard

I have deployed the Logic App standard using the Bicep template and I am able to deploy the workflows by download it from portal zip and deploying it using the function app deployment task using azure ...
karthik's user avatar
  • 59
Answer

Approach 1 - Pipeline Replacement There are two approaches you can take, one of which is to do it during your CI/CD pipeline. Although it's not BICEP, the concept is likely the same. https://github....

View answer
Skin's user avatar
  • 11.7k
1 vote
2 answers
301 views

Azure Blob Storage - RBAC access not giving List permission

I am trying to access a Azure Blob Storage account to read .PDF files using RBAC to secure the system. Using the code below I am able to read single files if I know the exact name they have in the ...
Glyn's user avatar
  • 21
Answer

Azure.RequestFailedException: 'This request is not authorized to perform this operation using this permission. The above error will occur when you don't have proper permission to access the resource(...

View answer
Venkatesan's user avatar
  • 11.3k
0 votes
1 answer
125 views

Connect-ExchangeOnline -ManagedIdentity -Organization will raise this error " The role assigned to application ** isn't supported in this scenario"

I have created an Azure Function of type PowerShell core. the code will get user emails from sharepoint list, and remove the user from all the groups (Security group, Mail-Enabled security group, ...
microsoftdeveloperdesigner's user avatar
Answer Accepted

EXCEPTION: The role assigned to application 04Xxfe5 isn't supported in this scenario. Please check online documentation for assigning correct Directory Roles to Azure AD Application for EXO App-Only ...

View answer
Pravallika KV's user avatar
0 votes
2 answers
156 views

Azure Logic App: Can't access value of variable in PowerShell script

I have an CSV file stored in an Azure blob storage. I want to read this csv file and process it with a logic app. Therefore I use a blob connector to read the content of the file and store it in a ...
LStrike's user avatar
  • 1,662
Answer

I think the problem here ist, that a variable in a workflow does not have an output. Yes, you are right. the best way to use is firstly setting the variable as empty : Then set the variable with the ...

View answer
RithwikBojja's user avatar
0 votes
1 answer
173 views

How to get list of Planner Plans via Microsoft Graph similar to My Plans web page?

The web page "My Plans" of Planner Web UI shows list of all plans available for current user: How can i get the same list vie Planner API in Microsoft Graph C# SDK? The request var plans = ...
23W's user avatar
  • 1,620
Answer Accepted

Note: The Microsoft Graph API call Me.Planner.Plans only returns plans where the user is an explicit member, which does not include plans accessible through Microsoft 365 group membership and hence ...

View answer
Rukmini's user avatar
  • 17.7k
0 votes
1 answer
247 views

How to set AuthenticationLevel to Anonymous for a function app with EventGridTrigger in local environments (IIS)

I am trying to test my Azure function with EventGridTrigger. The function is hosted in local IIS using Microsoft.Azure.WebJobs.Script.WebHost.exe. More destails can be found in here. When I am testing ...
Mojenga's user avatar
Answer

EventGridTrigger doesn't support AuthorizationLevel as it is a webhook but not a Http Endpoint. This is unlike HttpTrigger where we can set AuthorizationLevel.Anonymous to allow anyone to access the ...

View answer
Pravallika KV's user avatar
0 votes
2 answers
119 views

Passing Variables to Query Inside Lookup Activity in ADF

I am trying to create an incremental Load Pipeline based on Pipeline Endtime. I have a source table Salesroifiles where i have file path, Filename, Sinkcreatedon and SinkModifieddon. I need to pick ...
Hemant Kumar's user avatar
Answer Accepted

The error you're encountering is due to how dynamic content expressions are being interpreted and injected into the SQL query in your Azure Data Factory (ADF) pipeline. Use ADF dynamic query ...

View answer
Pratik Lad's user avatar
  • 8,728
-1 votes
2 answers
184 views

How to set up ONLY Email Verification in Azure B2C Custom flow - Identity Experience Framework

I'm trying to implement a simple pure Email verification policy, in which the claim should return just the verified email address post-verification. When I run the flow, it just opens the b2clogin ...
marius's user avatar
  • 45
Answer

If you want to verify the email, just have one self-asserted policy with: <OutputClaim ClaimTypeReferenceId="email" PartnerClaimType="Verified.Email" Required="true" /&...

View answer
rbrayb's user avatar
  • 47.1k
0 votes
2 answers
115 views

Case insensitive JSON parameter names in FunctionsApplicationBuilder

I have scaffolded an Azure Functions application using .NET 9. The Program.cs file looks like this: using Microsoft.Azure.Functions.Worker; using Microsoft.Azure.Functions.Worker.Builder; using ...
SuperMe's user avatar
  • 113
Answer

By default, System.Text.Json is case-sensitive when deserializing unless explicitly told otherwise. When the JSON uses "double", it doesn't match with Double property in Body record, so it ...

View answer
Pravallika KV's user avatar


1
2 3 4 5
281