0

我正在使用 PHP 将状态更新发布到我的一些粉丝页面。

我正在发布链接,并且所有内容都正确加载,但是,发布完成后共享按钮消失了。

我看到其他几个人问同样的问题,但没有答案。

如果有人可以帮助我找到答案,我会确保告诉其他人。

谢谢大家!

    公共函数 addStatus($status)
    # 用于:FB Simple APi
    #           
    {

        如果($this->_user){

            尝试 {

                $dataArray = 数组(
                    '消息' => $状态,
                    '链接' => 'http://videomaniacsnetwork.com/wallposts/CZikEEIJiF.html'
                    );                  

                if ($this->_isPage && REPLY_AS_PAGE) {
                    $dataArray['access_token'] = $this->_getPageToken();
                }                   

                $publishStream = $this->_facebookObj->api('/' . $this->_userId . '/feed', 'post', $dataArray);

                if (TRACE) {$this->_trace[] = 'addStatus'; }
                返回真;
            } 捕捉(FacebookApiException $e){
                $this->_errorArray[] = '无法设置状态。';
                $this->_debugArray[] = $e;
                返回假;
            }
        }
    }
4

1 回答 1

0

如果您使用 if 语句来发布表单,则可能是共享按钮未通过“if”验证语句。为该表单添加 php 代码验证。

于 2012-05-29T14:27:40.287 回答