0

私はjoomla1.5にモジュールを持っています、このモジュールのコンテンツ画像とそれはこのような記事へのリンクを持っています:

<a href="www.cc.com/index.php?id-22"><img src="....></a>

<a href="www.cc.com/index.php?id-22"><img src="....></a>だから私はユーザーがFacebookにこの写真共有記事をクリックするときに必要です。

4

2 に答える 2

0

FacebookGraphAPIを活用してほしい

より良い理解のために下記のリンクを参照してください http://developers.facebook.com/docs/reference/php/facebook-api/

このリンクからPHPSDKをダウンロードします https://github.com/facebook/php-sdk

次に、2つのファイルで構成される「examples」という名前のフォルダーがあります1.)example.php 2.)with_js_sdk.php

上部にあるこのような両方のファイルコードの内部//アプリケーションインスタンスを作成します(これをappIdとsecretに置き換えます)。

$facebook = new Facebook(array(
  'appId'  => '103562503147391',
  'secret' => 'c753579eb3e805d0155fc5542c54260d',
));

ここhttps://developers.facebook.com/appsから独自のAPPを作成し、独自のappIdsecretを取得する必要があります。

下記のコードはあなたのFacebookの壁にリンクを投稿します

<?php
/**
 * Copyright 2011 Facebook, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may
 * not use this file except in compliance with the License. You may obtain
 * a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

require '../src/facebook.php';

// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
  'appId'  => 'APP_ID',
  'secret' => 'APP_SECRET',
));

// Get User ID
$user = $facebook->getUser();

// We may or may not have this data based on whether the user is logged in.
//
// If we have a $user id here, it means we know the user is logged into
// Facebook, but we don't know if the access token is valid. An access
// token is invalid if the user logged out of Facebook.

   if($user) {

      // We have a user ID, so probably a logged in user.
      // If not, we'll get an exception, which we handle below.
      try {
        $ret_obj = $facebook->api('/me/feed', 'POST',
                                    array(
                                      'link' => 'www.example.com',
                                      'message' => 'Posting with the PHP SDK!'
                                 ));
        echo '<pre>Post ID: ' . $ret_obj['id'] . '</pre>';

      } catch(FacebookApiException $e) {
        // If the user is logged out, you can have a 
        // user ID even though the access token is invalid.
        // In this case, we'll get an exception, so we'll
        // just ask the user to login again here.
        $login_url = $facebook->getLoginUrl( array(
                       'scope' => 'publish_stream'
                       )); 
        echo 'Please <a href="' . $login_url . '">login.</a>';
        error_log($e->getType());
        error_log($e->getMessage());
      }   
      // Give the user a logout link 
      echo '<br /><a href="' . $facebook->getLogoutUrl() . '">logout</a>';
    } else {

      // No user, so print a link for the user to login
      // To post to a user's wall, we need publish_stream permission
      // We'll use the current URL as the redirect_uri, so we don't
      // need to specify it here.
      $login_url = $facebook->getLoginUrl( array( 'scope' => 'publish_stream' ) );
      echo 'Please <a href="' . $login_url . '">login.</a>';

    } 

?>
于 2013-01-03T10:18:04.370 に答える
0

あなたのサイトをFacebookに接続した後、このonclickイベントをあなたの画像リンクにできます=>

onclick="FB.ui({method: 'stream.share', display:'button', u: 'http://www.cc.com/index.php?id-22' }, null);"
于 2013-01-07T11:35:02.047 に答える