Versions Compared

Key

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

...

Configuring Emakin for Office365 Login Service

  1. Open the workflow.config file to add Office365 as login service
  2. Add a new element as into loginServices section.

    Code Block
    languagexml
    <add clientType="Office365" enabled="true" clientId="<applicationClientId>" clientSecret="<applicationClientSecret>" scope="User.ReadBasic.All" serviceAccountId="<applicationClientId>" serviceAccountKey="<pathToPFXFile>;<password>" />Start a new Edit Domain task from Administration menu.
  3. Expand the Office 365 login service
  4. Enter the registered Office 365 credentials
    Image Added 
  5. In service account key; you can specify in following formats;

    1. If certificate is stored in local server

      1. FILE;<CertificateFilePath>;<CertificatePassword>

    2. If you dont have local access to server you can also specify with 
      1. BASE64;<CertificateBase64>;<CertificatePassword>
      2. URL;<CertificateFileUrl>;<CertificatePassword>

Configuring Emakin for One Drive for Business Integration

  1. If you want to enable One Drive; add new element into fileServices section.
     

    Code Block
    languagexml
    <fileServices>
      <add clientType="Desktop" />
      <add clientType="Webcam" />
      <add clientType="OneDrive" scope="Files.Read.All"/>
    </fileServices>
  2. If you want to allow offline access to OneDrive API without user interaction please add "offline" scope with space seperated.

...