Desktop Apps
10 TopicsIt's time to 🍂 #FallForIntelligentApps 🍂
Today, we kick off the Fall season with content and activities to skill you up on all things Intelligent Apps or AI Apps on Azure with content, events, and community interactions. It is time to combine the power of AI, cloud-native application development, and, cloud-scale data to create highly differentiated digital experiences by building and modernizing intelligent applications with Azure for your users. Check out the blog below for some learning resources: https://techcommunity.microsoft.com/t5/apps-on-azure-blog/it-s-time-to-fallforintelligentapps/ba-p/3931266 What new skills or technologies are you focused on learning this fall?451Views1like0Commentspersonal account authentication in Azure Active directory
AADSTS500200: User account 'email address removed for privacy reasons' is a personal Microsoft account. Personal Microsoft accounts are not supported for this application unless explicitly invited to an organization. Try signing out and signing back in with an organizational account. i checked the signInAudience: "AzureADandPersonalMicrosoftAccount" in manifest but it also give the same error1.9KViews0likes1CommentAzure App Service Limits blog series - performance issue tips/tricks?
Have you checked out the recent series of blogs about Azure App Service Limits? Azure App Service Limit (1) - Remote Storage (Windows) Azure App Service Limit (2) - Temp File Usage (Windows) Azure App Service Limit (3) - Connection Limit (TCP Connection, SNAT and TLS Version) Azure App Service Limit (4) - CPU (Windows) Azure App Service Limit (5) - Memory (Windows) What's your favorite tip or trick for resolving performance issues within Azure App Services?447Views1like0CommentsMicrosoft Build 2023
Microsoft Build just wrapped but you can still experience it on demand. The event was packed with sessions covering the latest tools, development principles, strategies, and best practices. Check out some of the sessions from the event to help you get started. Find out how to modernize your apps with cloud services, explore ways to add AI into your apps and your dev workflow, learn about new tools, and more. https://techcommunity.microsoft.com/t5/apps-on-azure-blog/explore-sessions-from-microsoft-build-2023/ba-p/3741549 What was your favorite Build session? What are you looking to learn about currently?896Views0likes0Comments5G Modern Connected Apps
Get answers to your questions about 5G, Private MEC, and Modern Connected Applications. We will have a diverse group of product experts, business specialists, and engineers available to cover topics related to private 5G networks and edge computing. They will be standing by in these -- chats -- to offer guidance, discuss strategies and tactics, and answer any specific questions you may have. Upcoming office hours: March 23, 2023 - 9am Pacific April 13, 2023 - 9am Pacific May 4, 2023 - 9am Pacific How to join: Go to https://aka.ms/5gOfficeHours during office hour to join us live. No registration required. What applications are you building that require 5G, and how have you incorporated it?624Views0likes0CommentsOpenAI + Power Platform
Over the past few weeks, social-media feeds and newsletters have been filled with stories and conversations about artificial intelligence (AI). ChatGPT and OpenAI were often center of these conversations. Take a look at an exciting OpenAI and Power Platform scenario, discussing how developers can leverage OpenAI's APIs to build next-gen application using Microsoft Power Apps. This scenario uses DALL·E 2 (a new AI system model) to create realistic images and art from a text description in natural language. https://techcommunity.microsoft.com/t5/apps-on-azure-blog/build-next-gen-apps-with-openai-and-microsoft-power-platform/ba-p/3742289 Have you incorporated OpenAI into your apps? What are some of your use cases or planned future scenarios?1.4KViews0likes0CommentsHow to increase the limits of permissions requested per application - Azure AD signInAudience
I am currently developing an app that allows different operations with Microsoft SharePoint, I am using Microsoft Graph and I have registered the App in Azure AD, and it works fine. But my wish is that the App is public and thousands of people can use it, using their Microsoft account. But reading the documentation of Microsoft Graph I find an article that says that it has Limits of permissions requested by application. The limit indicated by the documentation is a maximum of 400 for a signInAudience= AzureADMultipleOrgs but I want and aspire to have more users, perhaps thousands of users. What do you recommend I do in this case? I want thousands of users to access the app with their Microsoft account and be able to do different activities. In the app when a user logs in, the app requests permission to access API Graph and performs the desired query, this process has to do with "Limits on requested permissions per app"??? For more information docs.microsoft.com/en-us/graph/permissions-reference761Views0likes0Commentsbest-practise to secure a spring boot ressource api with aad?
What ist the best-practise to secure a spring boot ressource api with aad? I would like to implement it with spring-boot-starter-webflux for a reactive api. It seems like there are two possible ways. Can webflux be used with any of the two aproaches? 1. Using azure spring cloud dependencies: You could install the Maven dependency: <dependency> <groupId>com.azure.spring</groupId> <artifactId>spring-cloud-azure-starter-active-directory</artifactId> <version>4.1.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-oauth2-resource-server</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency> And configure the properties like: spring: cloud: azure: active-directory: app-id-uri: api://<client_id> credential: client-id: <client_id> enabled: true Then you just need to setup the WebSecurityAdapter and everything just works: @EnableWebSecurity @EnableGlobalMethodSecurity(prePostEnabled = true) public class WebSecurityConfig extends AadResourceServerWebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { super.configure(http); http.cors().and() .csrf().disable().authorizeRequests() .and() .authorizeRequests().antMatchers( "/actuator/health/**" ).permitAll() .anyRequest().authenticated(); } } 2. Do it the Spring way This repository "azure-spring-boot-samples/aad/spring-security/servlet/oauth2/client-access-resource-server/resource-server at spring-cloud-azure_v4.2.0 · Azure-Samples/azure-spring-boot-samples · GitHub" seems to just use the Spring Security properties like: spring: security: oauth2: resourceserver: jwt: jwk-set-uri: https://login.microsoftonline.com/${TENANT_ID}/discovery/v2.0/keys issuer-uri: https://login.microsoftonline.com/${TENANT_ID}/v2.0 audience: ${RESOURCE_SERVER_1_CLIENT_ID}1.9KViews0likes1CommentSingle Sign out from B2C native client application
Hi, I am signing out from my mobile app from b2c . But next time when I click on the identity provider it is not asking for credential. May I get any advise how to make the single sing out in the app code so that it will ask for credential when I sign in after signing out . Note : I am using the custom implementation of Azure B2C Thank you in advance.760Views0likes0CommentsConnecting PowerBI to Kusto database using Azure Application Service
We have set up an Azure application for the purpose of using it as authentication when connecting to our kusto database instead of organizational account. I was wondering if this is supported or if it is possible to acquire a token from Azure Active Directory and use it to authenticate to connect to Kusto.1.3KViews0likes0Comments