8

这种情况可能吗?

客户访问我的网站,想要下载他们感兴趣的 PDF 技术文档,他们单击“下载”按钮并出现 Facebook 共享窗口,让他们登录以将其共享到 Facebook。一旦他们单击“共享”并将其发布在他们的墙上,然后开始下载?

非常感谢。

伊恩

4

2 回答 2

19

更新

根据 Facebook 的一项新政策,这种行为是不允许的。需要您自担风险使用它。我对使用它不承担任何责任。

是的,使用JavaScript SDK,它提供了一个response(它不再)我们将创建一个if语句来查看响应是否有一个post_idif yes 显示下载链接否则做其他事情(提醒用户,也许?)

演示(API 2.0)(不工作;需要修订)

演示 (API 2.7) 工作 Rev#63

HTML

<div class="container">
    
    <div>
       <p>This file is locked, to unlock and download it, share it</p>
       <p class="hidden">Thanks for sharing, the file is unlocked and ready for download</p>
       <p class="hidden">In order to download this file, you need to share it</p>
    </div>

    <a class="fsl fsl-facebook" href="#" id="facebook-share">
       <span class="fa-facebook fa-icons fa-lg"></span>
       <span class="sc-label">Share on Facebook</span>
    </a>

    <a class="fsl content-download" href="#" id="download-file">
       <span class="fa-download fa-icons fa-lg"></span>
       <span class="sc-label">Download File</span>
    </a>
    
</div>

JavaScript (jQuery)

$('#ShareToDownload').on('click', function(e) {
            e.preventDefault();
            FB.ui({
                  display: 'popup',
                  method:  'share',
                  href:    location.href,
                  },
                  /** our callback **/
                  function(response) {
                          if (response && response.post_id) {
                          /** the user shared the content on their Facebook, go ahead and continue to download **/
                          $('#ShareToDownload').fadeOut(function(){ $('#downloadSection').fadeIn() });    
                          } else {
                          /** the cancelled the share process, do something, for example **/
                          alert('Please share this page to download this file'):
                  }
            });     
}); 

更新

随着API 版本 2.0的发布, Feed 对话框被弃用并被新的现代共享对话框取代,因此上述代码使用新的共享对话框

于 2013-10-02T06:33:35.870 回答
2

谢谢,完美运行!我不知道如何从 JSON 文件中获取下载链接,所以我的做法略有不同,可能不太安全。

将此添加到检查响应的部分

$.post('optimus.php', { 'fieldname' : 'download', 'value' : 'yes'});

制作了一个设置会话的新页面(optimus.php)

<?php
    session_start();
    $_SESSION[$_POST['fieldname']] = $_POST['value'];
?>

下载.php 包含以下代码

<?php
session_start();
if($_SESSION['download'] ==  "yes"){
session_destroy();
$file = 'file.zip';

    if (file_exists($file)) {
        header('Content-Description: File Transfer');
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename='.basename($file));
        header('Content-Transfer-Encoding: binary');
        header('Expires: 0');
        header('Cache-Control: must-revalidate');
        header('Pragma: public');
        header('Content-Length: ' . filesize($file));
        ob_clean();
        flush();
        readfile($file);
        exit;
    }
} else {
    echo "You didn't share, or you already downloaded the file";
}
?>

因此,当用户共享某些内容时,$_SESSION['download'] 设置为 yes。Download.php 检查它是否是,什么时候自动开始下载。此外,会话被破坏,因此他们只能下载一次。

于 2013-10-27T13:02:50.007 回答