Denodo - Creating Data Sources from Box/SharePoint

Box.com and SharePoint are two platforms used at the University of Illinois for storing and sharing documents, which make them good places to store documents that you want to integrate with Denodo. However, there are some nuances to be aware of in order to create stable integrations. This document is intended to establish best practices for creating stable integrations between Denodo and Box and/or SharePoint.

Box Custom Apps and SharePoint Online integrations use OAuth 2.0 authentication. OAuth 2.0 is a token-based authentication system.

Files

Best Practice #1: Use CSV files rather than Excel files. CSV files tend to be more stable in Denodo in general and we have also noticed that Excel files accessed over HTTP paths have limitations. Excel limitations can be avoided by converting them to CSV before integrating them with Denodo.

Best Practice #2: Use the same basic format for all your CSV files. Not only is consistency a good idea, but it will make the SharePoint integration more stable as well. In this document we will standardize using the comma ( , ) character for the column delimiter, \n for the end of line delimiter, and the first row will have column headers.

OAuth 2.0 Tokens

This document will not cover all the details of the OAuth 2.0 specification, but it is helpful to know a little bit about what is happening so the next steps make a little more sense.

Once an integration app is set up in Box/SharePoint it will have a Client ID and Client Secret associated with it. You can think of this Client ID and Client Secret like an application service account with a password. However, the Client ID and Client Secret are not sufficient to fully authenticate into Box/SharePoint and access data. Instead, the client application, Denodo, in this case, will request an access token from the Box/SharePoint OAuth server. When Denodo asks for an access token the OAuth server returns both and access token and a refresh token. This access token is used to make requests for data within Box/SharePoint. However, the access token is only good for a limited amount of time. After that time, the client application (Denodo) will need to use the refresh token to request a new access token from the OAuth server.

Denodo will perform the actions of using refresh tokens to get new access tokens, but there are things that cause this process to become unstable. The suggestions in this document are made to help avoid those issues.


Creating Box Integrations

Step 1 of 2

  1. Log into the Box.com Developer Console: https://uofi.app.box.com/developers/console
  2. Click Create New App and choose Custom App.
  3. Enter a name for the app according to your naming standards in the App Name field.
  4. Enter a concise Description.
  5. For Purpose, select Integration.
  6. For Categories, select Collaboration.
  7. For Which external system are you integrating with?, enter “Denodo” into the field.
  8. For Who is building this application?, select Customer.
  9. Select Next.

Step 2 of 2

  1. For Authentication Method, select User Authentication (OAuth 2.0).
  2. Select Create App.

Configuration Settings for Your New App

  1. Select the Configuration tab.
  2. Scroll down to the OAuth 2.0 Credentials section.
  3. Copy and paste the Client ID and Client Secret to a convenient, easily accessible location (such as Notepad).
    1. NOTE: The developer token is not necessary for our use. However, you will need the Client ID and Client Secret for the data source configuration in Denodo.
  4. Add the OAuth 2.0 Redirect URI by selecting Add a URI. Add all three redirect URIs so you will be able to access the files in any Denodo environment you have access to.
    1. Production: https://datahub.uillinois.edu/oauth/2.0/redirectURL.jsp
    2. QA: https://qa.datahub.uillinois.edu:9443/oauth/2.0/redirectURL.jsp
    3. Dev: https://dev.datahub.uillinois.edu:9443/oauth/2.0/redirectURL.jsp
  5. For Application Scopes, select both Content Actions (Read all files and folders stored in Box and Write all files and folders stored in Box).
  6. Select Save Changes.
    1. NOTE: If you navigate to My Apps, the app you just created will appear in the list.

Base URL to Use in Denodo to Access Files Using This Custom Box App

Generate the URL by combining the following components:

  1. https://api.box.com/2.0/files/
    • NOTE: This is necessary for the api to locate and read the file.
  2. The file ID from the URL of the data source file in Box.
    • Example: https://uofi.app.box.com/file/1445697894187
  3. End with /content to allow Denodo to read the contents of the file.

Example Base URL: https://api.box.com/2.0/files/1445697894187/content

Creating SharePoint Integrations

App Registrations

  1. Navigate to and log in to the Azure Portal: https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/RegisteredApps
  2. Click New Registration.
  3. Enter the Name.
  4. For Supported account types, set to Accounts in this organizational directory only.
  5. For Redirect URI, select Web and enter one of the following URIs:
    1. Production: https://datahub.uillinois.edu/oauth/2.0/redirectURL.jsp
    2. QA: https://qa.datahub.uillinois.edu:9443/oauth/2.0/redirectURL.jsp
    3. Dev: https://dev.datahub.uillinois.edu:9443/oauth/2.0/redirectURL.jsp
    4. NOTE: Due to a SharePoint limitation, the value you set for Redirect URI will be the only one you can use as a redirect URI for this app. Azure supports adding more redirect URIs to an app, but SharePoint only supports one. Be sure you are adding the URI of the Denodo environment you wish to use.
  6. Click Register.

Once the app is registered, we will need to grant permissions for clients to access SharePoint Online using the app.

Integration Assistant

  1. Click the Integration assistant from the left-hand menu.
  2. For What application types are you building?, select Daemon (background process or automation).
  3. Click Evaluate my app registration.

API Permissions

  1. Under Manage in the left-hand menu, click API permissions.
  2. Click Add a permission.
  3. Select SharePoint from the list of Commonly used Microsoft APIs.
  4. Select Delegated permissions.
  5. Under Permission, expand the AllSites menu.
  6. Select AllSites.Read.
  7. Click Add permissions.

Certificates and Secrets

  1. Under Manage in the left-hand menu, click Certificates and secrets.
  2. Click New client secret.
  3. Enter a Description.
  4. For Expires, select an expiration timeframe.
  5. Click Add.
    1. NOTE: You will see that the new client secret has been added to the Client secrets list.
  6. Copy and paste the Value of the client secret to a convenient, easily accessible location (such as Notepad).
    1. NOTE: This is the only time you can view the value! You will need this value when you create Denodo data source connections using this SharePoint app.
  7. In the left-hand menu, click Overview.
  8. Copy and paste the Application (client) ID to a convenient, easily accessible location (such as Notepad).
    1. NOTE: You will need this value when you create Denodo data source connections using this SharePoint app.
  9. Copy and paste the Directory (tenant) ID to a convenient, easily accessible location (such as Notepad).
    1. NOTE: You will need this value when you create Denodo data source connections using this SharePoint app.

Base URL to Use in Denodo to Access Files Using This SharePoint App

https://uillinoisedu.sharepoint.com/sites/[SiteName]/_api/Web/GetFileByServerRelativePath(decodedurl=''@sp_path'')/$value

For [SiteName] in the Base URL, use the name of a SharePoint site (without spaces) that you have access to.

  • For example, TestSiteforDenodoImplementation.

This uses an interpolation variable for the “path.” This is what will make the connection reusable.

Best Practice: Only use the SharePoint App credentials in a single Denodo connection. Creating more than one Denodo connection that re-uses the same SharePoint Client ID will cause the access tokens associated with that Client ID to interrupt one another and your integration will become unstable.



KeywordsDatahub   Doc ID136730
OwnerLearning Systems SupportGroupUI Training and Development Resources
Created2024-04-10 14:56:31Updated2024-07-02 10:06:43
SitesUniversity of Illinois Training and Development Resources
Feedback  0   0