we are using embedly to display posts for our users on our site. To try it out, we are using a free account. We have an API call to retrieve the post's (twitter, facebook, etc) attributes and a rendering component. The frontend is being built with REACT. All post shows the embedded brand. Why is it happening? Do you know if we need to upgrade the service? What do we have to change to be able to hide the branding?
API CALL
export const getEmbedJson = async (URL: string) => {
const { data } = await embedlyApi.get(`/1/oembed?url=${url}&key=${embedlyKey}`)
return data
}
Rendering component:
<blockquote className="embedly-card" data-card-key={config.embedly.key} style={{ zIndex: '10' }}>
<h4>
<a href={widget.url}>{widget.title}</a>
</h4>
<p>{widget.description}</p>
</blockquote>
html.index
<body>
<script>
(function(w, d){
var id='embedly-platform', n = 'script';
if (!d.getElementById(id)){
w.embedly = w.embedly || function() {(w.embedly.q = w.embedly.q || []).push(arguments);};
var e = d.createElement(n); e.id = id; e.async=1;
e.src = ('https:' === document.location.protocol ? 'https' : 'http') + '://cdn.embedly.com/widgets/platform.js';
var s = d.getElementsByTagName(n)[0];
s.parentNode.insertBefore(e, s);
}
})(window, document);
</script>
<script async src="//cdn.embedly.com/widgets/platform.js" charset="UTF-8"></script>
Thanks in advance