Last updated 1 year ago
Adds an entry to the web-browser read later list.
const readLaterCallback = (response: ReadLaterItem, timestamp?: Date) => { console.log(response, timestamp); }; const request: ReadLaterItem = { title: 'Test', url: 'https://www.cobi.bike' }; COBI.app.readLater.write(request, readLaterCallback);
const readLaterCallback = (response, timestamp) => { console.log(response, timestamp); }; const request = { title: 'Test', url: 'https://www.cobi.bike' }; COBI.app.readLater.write(request, readLaterCallback);
{ "title": "Test", "url": "https://www.cobi.bike" }