JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="https://connect.facebook.net/ar_AR/sdk.js#xfbml=1&amp;version=v2.8"></script>
JavaScript
var token = '34c283ad5a7295ab1666b5c6ea9e1a3f', // learn how to obtain it above
url = encodeURIComponent('https://jsfiddle.net/');
// فيسبوك
$.ajax({
url: `https://graph.facebook.com/?id=${url}`,
type: 'GET',
success: function(data){
$('body').append(`فيسبوك: ${data.share.share_count}`);
},
error: function(data){
console.log(data); // send the error notifications to console
}
});