POST Deployment v1.8.3
Tenant properties
Add redirect URI to SharePoint App Registration
MANDATORY
We need to add a redirect URI to SharePoint App Registration. It must be a URL where the Syntphony Users group has access. The most common is https://{tenantName}.sharepoint.com/sites/togo
To do that action, you must access to https://portal.azure.com and search for App registrations.
You should see a list of all available app registrations clicking on All applications tab. You must filter for SharePoint Online Client Extensibility Web Application Principal.
Click on the Display name to open it.
In the left menu, click on Authentication option. Then add the redirect URI in the Single-page application section. If not exists, you must Add a platform of Single-page application type.
Finally, Save the changes.
Update Syntphony_SETTINGS tenant property
MANDATORY
We must update the tenant property that stores the redirect URI. We have also changed the model of that tenant property to simpler one.
You must open the folder Tenant properties inside the Post deployment configuration.zip
Read property
First you need to execute Read property.ps1 to read the current values of the property. Open the file with PowerShell. Before running the script, you must change the $tenantName variable value with your tenant’s name.
By default, we use https://{tenantName}.sharepoint.com/sites/AppCatalog. Change if your tenant uses a different URL.
Now you can execute it. It is necessary to use a user that have permissions to admin center. Your output will be something like
Edit property
In another PowerShell instance, open Edit property.ps1. First step is changing the $tenantName variable value with your tenant’s name.
Second step, update values of $tenant, $backendAppClientId and $ocpApimSubscriptionKey with the values retrieved in the previous PowerShell execution Read property.
Note: the value of $backendAppClientId corresponds to the value of clientId retrieved in the previous step Read property.
In the third step, you must set the Application (client) ID of the App Registration SharePoint Online Client Extensibility Web Application Principal in the $sharepointAppClientId variable.
By default, we use https://{tenantName}.sharepoint.com/sites/togo. If you have used another URL in the previous step, you must change it in the $redirectUri variable.
Also, we use https://{tenantName}.sharepoint.com/sites/AppCatalog by default. Change if your tenant uses a different URL.
Finally, once you change all the values, you can execute it. It is necessary to use a user that have permissions to admin center.
End users will see the changes when open a new tab in the browser, close the browser or a day has passed without closing an open tab.