Calories Extraction
ROOK offers the ability to extract calories from Apple Health and Health Connect. This section describes how to achieve this.
It is important to note that the calories are included into the include the background sync that you will receive through your webhook. If you need to extract calories on demand, please follow the next example.
tip
It is important to note that you will receive the calories as a result of the call, and they will also be sent to your webhook.
Permissions
Apple Health | Health Connect |
---|---|
![]() | ![]() |
![]() | ![]() |
Example
import React from "react";
import { View, Button, Alert, Text } from "react-native";
import { useRookEvents } from "react-native-rook-sdk";
const CaloriesEvent = () => {
const { ready, syncTodayCaloriesCount } = useRookEvents();
const handlePress = async (): Promise<void> => {
try {
const result = await syncTodayCaloriesCount();
console.log(result);
} catch (e) {
console.error(e);
}
};
return ready ? (
<View style={{ padding: 20 }}>
<Button title="Get Calories" onPress={handlePress} />
</View>
) : (
<Text>Loading . . .</Text>
);
};
export default CaloriesEvent;