Custom API Integration
Last updated
Last updated
fetch('https://my-api.example.com/user-data/123')
.then(response => response.json())
.then(userData => {
BlingsPlayer.create({
// project: {...},
// settings: {...},
data: userData
});
});