Web API Azure .net c# request, visible to others, content of URL

My question is, can someone see your full URL web API, that you developed when a user makes a request with that URL get/post/delete/put ? Can they see in network traffic your Web APIs URL that are being called?
Example of URL: https://webapiserver.azure.com/something/something/Username/password
Can you actually see these content when the request is being made from a user, lets say i am developing an Android application, and inside that application, i make these kind of API request, and i worrying about the security, if an ‘attacker’ can see the content..

Getting an unconfigured reply URL error on Blazor App with Azure AD authentication

I’ve created a template Blazor Server Side project in VS with single tenant Azure AD authentication. Running the app on localhost i’m able to log in fine, but unable to log in when the app is published as Azure Web app. Error: AADSTS50011: The reply URL specified in the request does not match the reply URLs configured for the application: ‘app client id here’.

Can you deploy single aspx.cs file using Visual Studio Web Publish to Azure Web App (Azure runtime issue)

I’ve noticed that although I’m able to successfully deploy my web app (ASP.NET) to Azure using web publish in Visual Studio. I’m also able to successfully deploy individual files to the server directory, by right clicking on the file in the solution explorer and clicking publish.

retrieve the default site URL(azurewebsites.net) from an Azure website (xyz.com)

Azure websites have a default “site URL” , something like mysite.azurewebsites.ne(which i don’t have, I only have the xyz.com). Is it possible to get this URL just by knowing the address aka custom domain (xyz.com) , keep in mind that im not the admin of the site and all I have is normal access

Application Initialization IIS – Log Files

I have configured the Application Initialization for a Web App running on Azure, the reason for that is to improve the “warm up”, because I have some issues with Scale-out, the instance is not ready for the connection then I got some servers errors.
There is a good doc from Microsoft about that:
https://docs.microsoft.com/en-us/iis/get-started/whats-new-in-iis-8/iis-80-application-initialization

How to set Azure Authentication custom login return url?

I followed this article https://azure.microsoft.com/en-us/blog/announcing-app-service-authentication-authorization/ to set up Azure authentication for my MVC app. First I turned on Azure AD provider. In the Authentication / Authorization settings, I selected “Allow request(no Action)” for “Action to take when request is not authenticated” because I only need users to login for certain controller actions.