terra_apple_health

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

terra apple health

Terra Flutter Apple Healthkit #
This (unofficial) package bundles a bridge and an interface to interact with Terra's Apple SDK. This enables developers to build a react native application and connect user's Apple Healthkit to the Terra ecosystem.
Setup #
First, install the plugin:
dart pub add terra_apple_health
copied to clipboard
Usage #
You can refer to /example for an example usage. First import the plugin and create an instance:
import 'package:terra_apple_health/terra_apple_health.dart';

...

final terra = TerraAppleHealth(
// Note pass your own API keys and Dev ID
"terraTestDevID",
"terraTestingAPIKey",
autoFetch: true
);
copied to clipboard
After exposing a widget session to your users, if you determine they'd like to authenticate with apple health, you can call TerraApple.auth which authenticates the user with Terra and returns a future:
final authResult = await terra.auth();
if (authResult['terra_id'] != null) {
// grab userID, or status from the response map
}
copied to clipboard
Once you have a user ID, you can connect the device SDK instance to Terra by using TerraApple.initTerra:
terra.initTerra(userId: authResult['terra_id']);
copied to clipboard
initTerra connects the device to Terra. This has to be done everytime the user opens the app (if the SDK is not initialised it has not indication about where to connect to Terra). On the other hand, the auth is only required on the first user connection from your app to map their device to a Terra user ID (after that, any call to auth will return the same user ID that was generated for that device)
If autoFetch is set to true. data is sent every 8 hours to your webhook if the users open the app.
Activity data is sent to your webhook whenever the user opens the app. You can also request data from the app to be sent to your webhook using getters:
terra.getBody(
DateTime(2022, 01, 02),
DateTime.now()
);
terra.getDaily(
DateTime(2022, 01, 02),
DateTime.now()
);
terra.getSleep(
DateTime(2022, 01, 02),
DateTime.now()
);
terra.getActivity(
DateTime(2022, 01, 02),
DateTime.now()
);
copied to clipboard
Finally, you can deauth users using the deauth() function and calling the Terra deauth API

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.