You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are there any alternative ways we can use the sharepoint integration or will this be the point at which we can no longer use it?
Options 1 and 2 are not practicable for our company (MFA).
The text was updated successfully, but these errors were encountered:
@Erdb33reis Meanwhile, I do find that Method 3 still works, but you may be encountering issues since Dataiku's documentation seems to be inaccurate. I spent a couple hours troubleshooting myself, and I can tell you this:
If you get this error:
At your /appinv.aspx link, modify your Permission Request XML to set the permissionrequestscope as such:
If you get this error:
Use PowerShell (as a tenant admin) to enable the depreciated Custom App Authentication
# Check if SharePoint module is currently installed; returns nothing if not.Get-Module-Name Microsoft.Online.SharePoint.PowerShell -ListAvailable | Select Name,Version
# Installs PowerShell module for this user.Install-Module-Name Microsoft.Online.SharePoint.PowerShell -Scope CurrentUser
# Connect to Sharepoint (opens up separate window for auth)Connect-SPOService-Url https://teragonia-admin.sharepoint.com# Enable Custom App AuthenticationSet-SPOTenant-DisableCustomAppAuthentication $false
If you want to narrow down your permission request XML further (best practice), check out this Medium article on what URL you use to access the "appinv.aspx" to scope to a particular site collection / site / library - and I suspect that the right that is needed is only "Manage" rather than "FullControl": https://medium.com/ng-sp/sharepoint-add-in-permission-xml-cheat-sheet-64b87d8d7600
Hi,
Option 3 is unfortunately no longer usable due to the deprication of a function by Microsoft.
https://www.dataiku.com/product/plugins/sharepoint-online/
MS info:
https://learn.microsoft.com/en-us/sharepoint/dev/sp-add-ins/retirement-announcement-for-azure-acs
Are there any alternative ways we can use the sharepoint integration or will this be the point at which we can no longer use it?
Options 1 and 2 are not practicable for our company (MFA).
The text was updated successfully, but these errors were encountered: