如何在adobe muse中创建自定义FB共享按钮?

时间:2015-07-14 06:20:02

标签: facebook adobe muse

我对这个领域和stackoverflow都是全新的,所以请耐心等待。

我在缪斯创建了一个网站(当然没有设计编码),

这是我的问题......只是坚持创建一个" Fb分享按钮"

但我有个主意

步骤1,当用户点击按钮时,使用fb登录或共享菜单加载灯箱

步骤2,当用户输入必要信息时,会将其发布在墙上

第3步,将它们重定向到另一个页面。

请帮帮我......

2 个答案:

答案 0 :(得分:0)

首先,您需要创建一个新的Facebook应用程序Setup App Here

然后您需要下载facebook PHP SDK Here

此时,您需要将SDK解压缩到您的托管网站的任何位置的根目录。

如果您正在使用本地主机,则需要安装xampp wamp lamp or mamp才能在本地主机上正确设置服务器以对您进行测试php这是因为php是一项服务脚本语言。如果你不熟悉php,请按照本教程启动php并运行,然后才能完成本教程。 PHP Setup Here

如果您喜欢视频教程,youtube.com上有很多内容

在您的服务器或localhost上运行facebook sdk and php后,您将需要连接到Facebook,

在新目录中创建一个新的PHP文件并添加以下代码:

<?php
session_start();

require_once 'facebook-php-sdk/autoload.php';
use Facebook\FacebookSession;
use Facebook\FacebookRequest;
use Facebook\GraphUser;
use Facebook\FacebookRequestException;
use Facebook\FacebookRedirectLoginHelper;

$api_key = 'FACEBOOK_APP_ID';
$api_secret = 'FACEBOOK_APP_SECRET';
$redirect_login_url = 'http://www.yoursite.com/somefolder/file.php';

要发布指向用户Facebook时间线的链接,该应用程序需要授权。这实际上是一个复杂的函数,将此代码添加到PHP文件中的其他代码之下。

/ initialize your app using your key and secret
FacebookSession::setDefaultApplication($api_key, $api_secret);

// create a helper opject which is needed to create a login URL
// the $redirect_login_url is the page a visitor will come to after login
$helper = new FacebookRedirectLoginHelper( $redirect_login_url);

// First check if this is an existing PHP session
if ( isset( $_SESSION ) && isset( $_SESSION['fb_token'] ) ) {
    // create new session from the existing PHP sesson
    $session = new FacebookSession( $_SESSION['fb_token'] );
    try {
        // validate the access_token to make sure it's still valid
        if ( !$session->validate() ) $session = null;
    } catch ( Exception $e ) {
        // catch any exceptions and set the sesson null
        $session = null;
        echo 'No session: '.$e->getMessage();
    }
}  elseif ( empty( $session ) ) {
    // the session is empty, we create a new one
    try {
        // the visitor is redirected from the login, let's pickup the session
        $session = $helper->getSessionFromRedirect();
    } catch( FacebookRequestException $e ) {
        // Facebook has returned an error
        echo 'Facebook (session) request error: '.$e->getMessage();
    } catch( Exception $e ) {
        // Any other error
        echo 'Other (session) request error: '.$e->getMessage();
    }
}

现在我从响应创建一个GraphObject,脚本将数据输出到浏览器。我使用Facebook消息ID进行第二次请求:

if ( isset ( $msgid ) ) {
        // we only need to the sec. part of this ID
        $parts = explode('_', $msgid);
        try {
            $request2 = new FacebookRequest(
                $session,
                'GET',
                '/'.$parts[1]
            );
            $response2 = $request2->execute();
            $graphObject2 = $response2->getGraphObject();
            // the GET response object
            echo '<pre>' . print_r( $graphObject2, 1 ) . '</pre>';
        } catch ( FacebookRequestException $e ) {
            // show any error for this facebook request
            echo 'Facebook (get) request error: '.$e->getMessage();
        }
    }

最后但并非最不重要的是,我们看一下创建登录URL的代码(将此代码放在另一个下面)。

} else {
    // we need to create a new session, provide a login link
    echo 'No session, please <a href="'. $helper->getLoginUrl( array( 'publish_actions' ) ).'">login</a>.';
}

按照本教程将用户连接到Facebook进行登录,然后允许您发布指向Facebook用户时间线的链接。这不是一项简单的任务,需要反复试验,特别是如果你是这类新事物。

我可以在这里找到基于此的完整教程,

Full Tutorial Here

答案 1 :(得分:0)

Muse已经为这种类型提供了内置功能,只需查看社交背后的小部件。

不是使用php设置你的页面,而是更容易。

另请访问Facebook SDK文档,详细了解如何重定向链接。

如果您按照这些说明而不是使用php创建所有内容会更容易,这会更复杂。