How to get followers count from Social Platforms in PHP with jQuery?
In this blog we describe how you can get followers count from Facebook, Instagram, YouTube and Twitter profile URL. When you enter a Facebook or Instagram URL in the text field and click on the button then contact information like; name, email, profile picture and description will also get from their social account. For get followers we have to use some jQuery code snippets. Facebook Follower count: By using Facebook graph api you can get social count from Facebook. For this you require an access token and you can get this from here https://developers.facebook.com/docs/marketing-apis/overview/authentication/. After getting access token you can use jquery following code to get followers. var link11 = document.getElementById('FacebookPageURL').value; link11 = stipTrailingSlash(link11); var link2 = link11.split( '/' ); var user = link2[link2.length - 1]; var token = 'Your…