In the meantime i've coded a small webhook to retrieve the number of reads from a paper published on scientific.net and insert it to any author/ researcher webpage:
HTML frontend code:
<script src="js/jquery-3.4.1.min.js"></script> <small id="include-aef-stats"> <script> $(function(){ $("#include-aef-stats").load("kernel/loadstats.php"); }); </script> </small>
loadstats.php backend code:
<?php $url = "https://www.scientific.net/Paper/GetDownloadsAndVisitorsCount?paperId=523460"; $scientificNetCounter = file_get_contents($url); echo $scientificNetCounter." reads on A.E.F. website" ?>
Top comments (0)