1

私のページでは、リンク/ URLのようにではなく、メッセージのテキストに画像を含む投稿フィードが必要ですが、htmltagsbbcodeのようなものをテキストメッセージに追加することは可能ですか?

$msg = "<img src=\"urlimg or facebook\" >\nMy text here";

$args = array(
  'message' =>  $mgs,
);

$myfeed = $facebook->api($pageid . '/feed', 'post', $args);

アップデート:

解決策を見つけましたが、2回続けて投稿すると、タイムラインの同じボックスにグループ化されます

$args = array(
'message' =>  $msg,
'image' => '@'.$path,
'aid' => $album_id,
'access_token' => $token
);  
$photo = $facebook->api($album_id . '/photos', 'post', $args);

自動グループ化を停止する設定がありますか?または、画像付きのフィードのように投稿する別の方法はありますか?

4

2 に答える 2

1

そこで、30秒かけてPHP Facebook APIを検索しました。これは、実際に実行する必要があることであり、次の例を見つけました。

<?
  // Remember to copy files from the SDK's src/ directory to a
  // directory in your application on the server, such as php-sdk/
  require_once('php-sdk/facebook.php');

  $config = array(
    'appId' => 'YOUR_APP_ID',
    'secret' => 'YOUR_APP_SECRET',
    'fileUpload' => true,
  );

  $facebook = new Facebook($config);
  $user_id = $facebook->getUser();

  $photo = './mypic.png'; // Path to the photo on the local filesystem
  $message = 'Photo upload via the PHP SDK!';
?>
<html>
  <head></head>
  <body>

  <?
    if($user_id) {

      // We have a user ID, so probably a logged in user.
      // If not, we'll get an exception, which we handle below.
      try {

        // Upload to a user's profile. The photo will be in the
        // first album in the profile. You can also upload to
        // a specific album by using /ALBUM_ID as the path 
        $ret_obj = $facebook->api('/me/photos', 'POST', array(
                                         'source' => '@' . $photo,
                                         'message' => $message,
                                         )
                                      );
        echo '<pre>Photo 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' => 'photo_upload'
                       )); 
        echo 'Please <a href="' . $login_url . '">login.</a>';
        error_log($e->getType());
        error_log($e->getMessage());
      }   

      echo '<br /><a href="' . $facebook->getLogoutUrl() . '">logout</a>';
    } else {

      // No user, print a link for the user to login
      // To upload a photo to a user's wall, we need photo_upload  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' => 'photo_upload') );
      echo 'Please <a href="' . $login_url . '">login.</a>';

    }

  ?>

  </body>
</html>

$config変数値と$facebook->api()呼び出しに注意してください。

于 2013-01-21T10:03:31.057 に答える
1

テキストメッセージの途中で画像を公開することはできません。Facebookでは許可されていません。

ただし、メッセージに画像を添付することはできます。画像は次のようにメッセージの左側に表示されます。

$msg = "My text here";
imgUrl = "http://urltotheimage.com/path/image.jpg";

$args = array(
    'message' => $mgs,
    'picture' => $imgUrl
);

$myfeed = $facebook->api($pageid . '/feed', 'post', $args);
于 2013-01-21T10:07:01.703 に答える