簡體   English   中英

獲取 twitter 和 google plus 共享計數或任何替代

[英]Get twitter and google plus share count or any alternate

嗨,我已經嘗試過下面的 twitter 代碼。

var tw_share_count = 0;
TWUrl = "https://cdn.api.twitter.com/1/urls/count.json?url=" + url + '&callback=?'
$.ajax({
    type: 'GET',
    url: TWUrl,
    success: function (data) {
        tw_share_count = data.count.toString();
        alert(tw_share_count);
    },
    async: false
});

下面是谷歌共享計數的代碼

var gl_shares_count = 0;

$.ajax({
    type: 'POST',
    url: 'https://apis.google.com/js/platform.js',
    processData: true,
    contentType: 'application/json',
    data: JSON.stringify({
        'method': 'pos.plusones.get',
        'id': url,
        'params': {
        'nolog': true,
        'id': url,
        'source': 'widget',
        'userId': '@viewer',
        'groupId': '@self'
    },
    'jsonrpc': '2.0',
    'key': 'p',
    'apiVersion': 'v1'
    }),
    success: function (response) {  
        alert(response.result.metadata.globalCounts.count);
        //  $('a.googleplus .counter').text(response.result.metadata.globalCounts.count);
    }
});

在檢查了一些視線,他們說 twitter 和 google + 都已停止共享計數。 我不知道有多少是真的。

我能夠分享鏈接,但無法計數。 我的 Facebook 和 Pinterest 數量正在增長,但 twitter 和 google plus 數量沒有來

請讓我擺脫這個問題,或者給我一個容易且免費實施的替代方案。

為了進行測試,我正在使用一些隨機站點來獲取 twitter/google+ 計數的確切數據,例如https://draxe.com/emotions-lower-inflammation/

看看這個,我有一個第三方 js 來獲得社交計數。 可能這會幫助你

 <!doctype html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <script src="https://webcyou.github.io/social-share-count-js/js/social-share-count.js"></script> <title>Share Count</title> <style> .fa { padding: 20px; font-size: 30px; width: 50px; text-align: center; text-decoration: none; margin: 5px 2px; } .fa:hover { opacity: 0.7; } .fa-facebook { background: #3B5998; color: white; } .fa-twitter { background: #55ACEE; color: white; } .fa-google { background: #dd4b39; color: white; } .fa-linkedin { background: #007bb5; color: white; } .fa-pinterest { background: #cb2027; color: white; } .fa-yahoo { background: #430297; color: white; } p{ font-size:14px; } </style> </head> <body> <a href="#" class="fa fa-facebook"> <p data-sc-fb="http://www.eventbee.com"></p> </a> <a href="#" class="fa fa-twitter"> <p data-sc-tw="https://stackoverflow.com"></p> </a> <a href="#" class="fa fa-google"> <p data-sc-gp="http://www.webcyou.com"></p> </a> <a href="#" class="fa fa-pinterest"> <p data-sc-pr="https://www.google.com/"></p> </a> <a href="#" class="fa fa-linkedin"> <p data-sc-ln="https://www.yahoo.com/"></p> </a> </body> </html>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM