Email Us

Oura Integration

Use Point SDK to allow your users to integrate their Point and Oura accounts.

🚧 Oura integration is currently under development, some SDK features, like metrics and insights, may not work properly with Oura data 🚧

Overview

When you integrate your app with Oura, Point Health Service will subscribe to Oura to collect the end-user data and generate metrics. However, we must provide a way for the user to authenticate their account and give Point authorization to subscribe to Oura data.

This article will cover all steps necessary to provide full Oura integration to your Point-powered application.

  1. Integrate your app with Oura.

  2. Create a custom URL for your app in Xcode.

  3. Set up the SDK with your Oura Client ID.

  4. Call the Oura authentication method.

💡 As this integration is mostly done in Point's backend, it is available regardless of device type.

Oura Integration

The first step to using Oura within Point SDK is integrating your app with Oura. We have a step-by-step tutorial here.

⚠️ You also must have a user token set to handle your user's Oura authentication. Check Getting Started for more information.

Authentication

Each user will need to individually authenticate their Oura account within Point SDK and give Point permission to get their Oura data. This is done on an Oura's web page, although the SDK is capable of loading a browser session that displays the authentication page. After some simple project setup, all you will need to do is call an SDK method when you wish to trigger the authentication flow.

Create a custom URL

As the authentication is handled by a browser session, the browser must know how to handle the control back to your app. For this, we can use a custom URL scheme that, when called by the browser, redirects to your app and dismisses the browser.

  1. Go to your project settings and select your app target.
  2. Under the Info tab, look for URL Types and click "+" to add a new one.
  3. In the Identifier field, enter your app's Bundle ID.
  4. In the URL Schemes field, enter the scheme you used in the callbackURL when creating your app integration with Oura. For example, if your callbackURL is "https://exampleApp/auth", use "exampleApp". Custom URL.

For more information, check the official docs: Defining a Custom URL Scheme for Your App

Authenticating

To display the authentication web page, call OuraIntegrationManager/authenticate(scopes:callbackURLScheme:).

When you call this function your app will display a browser with the Oura authentication web page. If the user successfully authenticates, the browser will be dismissed and the control will be handled back to your app.

💡 The callbackUrlScheme parameter is the scheme created in the previous section.

func authenticate() async {
    do {
        guard let ouraManager = Point.ouraManager else {
            print("Oura integration was not set up")
            return
        }
        try await ouraManager.authenticate(callbackURLScheme: "yourapp")
    } catch {
        print(error)
    }
}

If you wish to select specific Oura scopes, use the scopes parameter. All scopes are selected by default. Check Oura Official Documentation to know more about scopes.

func authenticate() async {
    do {
        guard let ouraManager = Point.ouraManager else {
            print("Oura client ID was not set when setting up the SDK")
            return
        }
        try await ouraManager.authenticate(scopes: [.heartrate, .workout], callbackURLScheme: "yourapp")
    } catch {
        print(error)
    }
}

💡 The user will be requested to provide authorization for each scope subscription, so data will be collected only if the user provides authorization.

After successful authentication, Point will retroactively retrieve one year of Oura data. After this, the subscriptions are created and Point will be notified for each new user data. No further action is necessary for the SDK. Check Health Data Service to know how to have access to Point's generated metrics.

Revoke

You can revoke all Oura subscriptions of the user by calling OuraIntegrationManager/revoke().

func revoke() async {
    do {
        try await Point.ouraManager?.revoke()
    } catch {
        print(error)
    }
}

After calling this, Point Health Service will stop receiving new data from Oura.

Check User Status

You can use OuraIntegrationManager/getUserAuthenticationStatus() to know what is the current authentication status for your user. If OuraIntegrationManager/UserIntegrationStatus/active is true, your user has already authenticated and Point is collecting their data. You can also check what types of data are being collected by checking OuraIntegrationManager/UserIntegrationStatus/scopes.

func getCurrentStatus() async {
    guard let manager = Point.ouraManager else { return }
    do {
        let status = try await manager.getUserAuthenticationStatus()
        print("Current status is: \(status?.active)")
        print("Authorized scopes are: \(status?.scopes)")
    } catch {
        print(error)
    }
}

Next Steps

Learn more about the Health Data Service.

Connect with Us

Terms & Conditions | Privacy Policy © 2023 Point® (Key Point Technologies, Inc.)