OBO Authentication
OBO or On-Behalf-Of authentication allows an authenticated extension app to perform the following operations on behalf of a given user:
List the streams of a given user
Initiate connection requests to and determine connection status with other users
Get the presence state of other connected users
Initiate IMs and MIMs with other users
Send messages and attachments
Set the context user's own presence
For a full list of OBO-Enabled endpoints, click here.
OBO use cases differ from bot use cases in that activities are performed as if end users had initiated actions directly from within Symphony themselves.
For OBO apps, authentication is a two-fold process:
The app itself must be authenticated using its RSA public Key. The app authenticates only if it is enabled for the pod and its key is trusted. Upon successful OBO app authentication, the app receives an app
sessionToken
.The app must request to authenticate on behalf of a particular user, using its app
sessionToken
. The app authenticates only if it is installed for the user and its appsessionToken
is valid. Upon successful OBO user authentication, the app receives the user'ssessionToken
.
Once the app has obtained the user's sessionToken
, it can make REST API calls with this sessionToken
to perform activities on behalf of the session user.
OBO App Permissions
Before proceeding, check out the OBO App permissions required for a given workflow:
Category | Permission | Description |
On Behalf Of |
| Required. This required permission allows an application to act on behalf of a user via any of the other permissions.
Note: This permission does not display to administrators on the Admin Portal because all apps can act on behalf of a user and therefore have the |
Messaging |
| The application can send messages for the logged-in user. |
Messaging |
| The application can suppress messages for the logged-in user. |
Get Connections |
| The application can get connection requests for the logged-in user. |
Send Connections |
| The application can send connection requests for the logged-in user. |
Get Presence |
| The application can only get presence for the logged-in user. |
Set Presence |
| The application can only set presence for the logged-in user. |
Primary User Identity |
| The application can get information about the logged-in user. |
Primary Contacts Access |
| The application can get information about other users through user look-up and search. |
List User's Streams |
| The application can list the streams in which the logged-in user is a member. |
Getting Started
In order to perform an OBO operation, you need to first create an extension application manifest
bundle.json
file and upload to the Pod.
Application Manifest Bundle File Sample:
Parameter | Type | Required | Description |
type | String | Required | This field should be set to |
id | String | Required | The unique identifier for your app. Note: Do not use a colon (:) in this field, or you will receive a |
name | String | Required | The name of your app, which will be displayed in the Symphony Market. |
blurb | String | Optional | Applied for Developer Mode. Field for display in the Symphony Market and Admin Portal. |
publisher | String | Optional | The publisher of your app, which will be displayed in the Symphony Market. |
url | String | Optional | URL which the pod will call to send pod information to the application |
domain | String | Required | The domain for your app, which should match the controller file URL. |
icon | String | Optional | An icon for your app (32x32 px), which will be displayed in the Symphony Market. |
Upload the manifest
bundle.json
to the Admin Portal -> App Management -> Add Custom App -> Import Application Bundle FileAdd your App Backend's (Bot) RSA public key in the Authentication section under App Management.
Give your Application the following Permissions:
ACT_AS_USER
Note: Give your extension application the appropriate permissions corresponding to your OBO workflow. For example, if you Bot will perform an OBO workflow to list a user's streams, grant your application with the LIST_USER_STREAMS permission.
Once your App is created, make sure that it is enabled:
Admin Portal -> App Settings -> Locate your App and toggle its 'Global Status' to be 'Enabled'
Toggle 'Visibility' to be 'Visible'
Toggle 'Installation' to be 'Manual'
The last step is to make sure that the application is installed for the appropriate users. If the installation is set to 'Manual', make sure end-users install the extension application manually via the Symphony Marketplace. If not, make sure Symphony Admin installs this application on behalf of a given list of users.
Implementing OBO Authentication
The BDK makes it super simple to create an OBO based workflow, To do so, simply, simply instantiate an OBO Session in your Bot project. The BDK allows you to instantiate your OBO session from a username or user ID.
Perform the Intended OBO workflow
In the following code snippet, the Bot authenticates on behalf of a given user and then prints a list of Streams (Type = ROOM) that the user in context is apart of:
Last updated