For the past 2 – 3 weeks, I have been looking into the new SharePoint hosting model – Microsoft Azure Application. Thought it will be helpful to put together the list of articles / references I have used to setup / start my first Office 365 integrated Azure Application.
- Provider hosted app vs Azure Application: A very detailed article by Scot Hillier explaining the difference between the different hosted app models.
- Azure AD Authentication Scenarios: http://msdn.microsoft.com/en-us/library/azure/dn499820.aspx
- Azure instance behind the Office 365: Azure instance behind the Office 365 tenant by Chris O’Brien.
- Office 365 API: Office 365 API Preview details. http://msdn.microsoft.com/en-us/library/office/dn605892(v=office.15).aspx
- Manage Azure AD using Powershell: http://technet.microsoft.com/en-us/library/jj151815.aspx contains the full details of the powershell setup and commandlets to access the Azure online.
- Error Connecting to Azure online: Sometimes the IE proxy server blocks the Azure online and gets the following error. “There was no endpoint listening at …”
- Building a real world cloud app with Azure: Step by Step guide to build a Azure app with Single Sign on using the Azure Active directory.
- Registering an app on the Azure AD: The Visual Studio (2013) tool automatically registers your application on the given Azure AD at the time of creating a new project. This can be seen either using the Azure Management portal or using the powershell.
- Get-MsolServicePrincipal: Retrieves the list of service principal from the connected Azure AD.
- “Get-MsolServicePrincipal | out-host -paging” : Lists the service principal with the paging option.
- “Get-MsolServicePrincipal | ForEach-Object {Write-Host $_.Addresses.Address }” : Lists the App address registered in the Azure AD.
- A new Service principal can be registered using the following commands: