iframely
Version:
oEmbed/2 gateway endpoint. Get embed data for various http links through one self-hosted API
17 lines (12 loc) • 471 B
JavaScript
export default {
provides: '__allowBrightcoveInPage',
getData: function(meta, whitelistRecord) {
// Allow slow cheerio parser, if whitelisted,
// But do not call, if there is twitter:player
if (whitelistRecord.isAllowed('html-meta.brightcoveInPage')) {
return {
__allowBrightcoveInPage: whitelistRecord.isAllowed('html-meta.brightcoveInPage', 'autoplay') ? 'autoplay': true
};
}
}
}