Complete documentation for all 30+ Bridge API actions. Click any action to expand its details.
BooAppSDK.whenReady().then(async () => {
const { token } = await BooAppSDK.getAuthToken();
const user = await BooAppSDK.getUserInfo();
// Use token for your backend API calls
});const pet = await BooAppSDK.getPetInfo();
const allPets = await BooAppSDK.getAllPets();
allPets.forEach(p => console.log(p.petName, p.petBreed));const photo = await BooAppSDK.openCamera({
maxWidth: 1024, quality: 85, returnBase64: true
});
if (photo) {
await BooAppSDK.shareText('Check out this photo!');
}Authentication and user profile access
Pet information retrieval
Camera, gallery, and file access
GPS and geolocation
Device info, network, and haptic feedback
Toast, alert, and confirm dialogs
Share content and navigate within the app
Scanner, clipboard, storage, biometrics, and notifications