Skip to main content

How to register a new application in the Azure classic portal?


  1. Sign in to the Azure Management Portal using your Office 365 Developer Site credentials.
  2. Click Active Directory on the left menu, then click on the Directory for your Office 365 developer site.    
  3. On the top menu, click Applications.
  4. Click Add from the bottom menu.
  5. Click Add an application my organization is developing.
  6. Specify the application name and select WEB APPLICATION AND/OR WEB API for Type.
  7. Click the arrow icon on the bottom-right corner of the page.
  8. Specify a Sign-on URL and APP ID URI (E.g https://localhost:9443/commonauth)
  9. The App ID URI is a unique identifier for Azure AD to identify your app. It must be a unique value in your organization’s Azure AD. (For example, if your organization’s Mail ID is like "testUser@viveXYZ.onmicrosoft.com", then App ID URI be like https://viveXYZ.onmicrosoft.com/myNewApp).
  10. Click the checkbox in the bottom right corner of the page.
  11.  Once the application has been successfully added, you will be taken to the Quick Start page for the application. From here, click Configure in the top menu.
  12. In permissions to other applications, click Add application.
  13. Click Office 365 Exchange Online, and then click the check mark icon.
  14. Under permissions to other applications, click the Delegated Permissions column for Office 365 Exchange Online, and select.
  15. Click Save in the bottom menu.

Comments

Popular Posts

How to install draw.io Desktop Application on Kali Linux?

draw.io is an online diagramming open source web application which can be used as flowchart maker, network diagram software, ER diagram tool, UML diagramand more. It can be freely accessible website of draw.io or official Docker image or Desktop version for macOS, Linux & Windows. This guide includes detailed instructions about Desktop version installation on Kali Linux. Download the .deb build for draw.io sudo apt update sudo apt -y install wget curl curl -s https://api.github.com/repos/jgraph/drawio-desktop/releases/latest | grep browser_download_url | grep '\.deb' | cut -d '"' -f 4 | wget -i - Install with dpkg command sudo apt -f install ./drawio-amd64-*.de When application is installed, launch the application with following command. drawio Now application is ready to use. Click on " Create New Diagram"  to create new project or click on " Open Existing Diagram " to edit. ...

What is Honeypot?

A  honeypot is a security mechanism that creates a virtual trap to lure attackers. Simply we can say that this is a  decoy box residing inside your network demilitarized zone  (DMZ), set up by a security professional to trap or aid in locating hackers, or to draw them  away from the real target system. Since this a  decoy system , a malicious attacker might try to attack; software on  the system can log information about the attacker such as the IP address. This information  can be used to try to locate the attacker either during or after the attack. Honeypots vary based on design and deployment models, but they are all decoys intended to look like legitimate, vulnerable systems to attract cyber criminals. Type of Honeypot Production Honeypot : Used by companies and corporations for the purpose of researching the motives hackers as well ass diverting and mitigating the risk of attacks on the overall network. Research Honeypot : Used by nonprofit organi...

How to install Oracle Virtualbox in Ubuntu?

Introduction VirtualBox is a powerful free tool offered by Oracle for running an operating system on your computer virtually. In this tutorial lets learn how to install VirtualBox on Ubuntu. Installation 1. Open a terminal or press Ctrl + Alt +T 2. Enter the following command to all the packages or dependencies.      sudo apt-get update ( make sure to give the root password) 3. Run the following command to download and install Virtualbox     sudo apt-get install vrtualbox virtualbox-ext-pack That's all! VirtualBox has been successfully installed on your Ubuntu machine, and you can start using it.