diff --git a/README.md b/README.md index ad8bdcd..dff1138 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ The available properties of `paramObj` are: |Parameter|Type|Description|Optional| |---------|--- |------|------| | name | text | Name of the provider. Available values: "Microsoft", "Google" or "" (if "" or undefined/null attribute, the authenticateURI and the tokenURI need to be filled by the 4D developer).|Yes -| permission | text | |No +| permission | text |
  • "signedIn": Azure AD/Google will sign in the user and ensure they gave their consent for the permissions your app requests (opens a web browser).
  • "service": the app calls [Microsoft Graph with its own identity](https://docs.microsoft.com/en-us/graph/auth-v2-service)/Google (access without a user).
  • |No | clientId | text | The client ID assigned to the app by the registration portal.|No | redirectURI | text | (Not used in service mode) The redirect_uri of your app, the location where the authorization server sends the user once the app has been successfully authorized. When you call the `.getToken()` class function, a web server included in 4D NetKit is started on the port specified in this parameter to intercept the provider's authorization response.|No in signedIn mode, Yes in service mode | scope | text or collection | Text: A space-separated list of the Microsoft Graph permissions that you want the user to consent to.
    Collection: Collection of Microsoft Graph permissions. |Yes