Read Later

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);
pageReadLaterItem
Example Response
{
    "title": "Test",
    "url": "https://www.cobi.bike"
}

Last updated