Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Create an app in SharePoint
    1. Open the browser and type the URL: https://<domain>.sharepoint.com/_Layouts/15/AppRegNew.aspx where <domain> is the SharePoint domain.



    2. Click Generate in the Client Id and Client Secret.

      Tip
      • Ensure that the OAuth grant type of the SharePoint app is set to Authorization Code as Adeptia supports only this OAuth grant type to connect to the app.
      • Copy the generated Client ID and Client Secret for future use.


    3. Type the app name in the Title.
    4. Type the Adeptia Connect URL without protocol in the App Domain. For instance, if the Adeptia Connect URL is https://ac2.adeptia.com then App Domain is ac2.adeptia.com.
    5. Type the callback URL in the Redirect URL in the format: https://<AdeptiaConnectURL>/rest/applications/microsoftsharepoint/account
    6. Click Create.
      This creates an app identifier.
  2. After creating the app, register your app.
    1. Type the URL: https://<domain>.sharepoint.com/_layouts/15/AppInv.aspx where <domain> is the SharePoint domain.



    2. Type the Client Id, generated while creating an app, in the App Id and then click Lookup.
    3. The data in the Title, App Domain, and Redirect URL is populated automatically.
    4. Type the XML code giving permissions. For information on URI and rights, click here. The sample XML code is:

      Code Block
      <AppPermissionRequests AllowAppOnlyPolicy="true">
      <AppPermissionRequest Scope="http://sharepoint/content/sitecollection" Right="FullControl" />
      <AppPermissionRequest Scope="http://sharepoint/content/sitecollection/web" Right="FullControl" />
      <AppPermissionRequest Scope="http://sharepoint/content/sitecollection/web/list" Right="FullControl" />
      </AppPermissionRequests>


    5.  Click Create.
    6. Trust the app permission and then click Trust it.
  3. After registering an app, now create an account.

...