Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I cannot get my script to work which will have a user's uploaded content from my website link to my Facebook Page. It was working up to a few days ago and now it just stopped. I thought perhaps Facebook had some changes which may have caused this, but I've been through everything a few times. Here's my script. Any suggestions appreciated..!

function add()
{
    //Configure::write('debug', 2);
    $this->check_profile_login();
    $this->layout='home';
    $category_id="";
    $videotype=0;
    $video="";
    $image="";
    if($this->data)
    {
        //echo "<pre>"; print_r($this->data); echo "</pre>";
        $this->Video->set($this->data);
        if($this->Video->validates())
        {
            //echo "in";
            //print_r($this->data); //exit;
            $this->data['Video']['status']="Active";    
            $this->data['Video']['posted_date']=date("Y-m-d H:i:s");    
            $this->data['Video']['seo_url']=$this->makeSeo($this->data['Video']['title']);
            App::import('vendor', 'Facebook', array(
                'file' => 'facebook' . DS . 'facebook.php'
            ));
            //post it to the online
            $facebook = new Facebook(array(
                'appId'  => FACEBOOK_APP_ID,
                'secret' => FACEBOOK_APP_SECRET,
                'cookie' => true,
            ));

            $attachment = array(
              'name' => $this->data['Video']['title'],
              'link' => 'http://www.WEBSITE.com/home/index/video/' . $this->data['Video']['seo_url'],
              'description' => 'Visit WEBSITE',
              'picture' => $this->data['Video']['image_url']
            );

            $user = $facebook->getUser();
            //echo "khush";
            //pr($user);
            try {

                $result = $facebook->api('/WEBSITE/feed/', 'post', $attachment);
                if(isset($this->data['Video']['post_to_facebook_timeline']) && ($this->data['Video']['post_to_facebook_timeline'] == 1))
                {
                    $result = $facebook->api('/me/feed/', 'post', $attachment);
                }


            } catch (FacebookApiException $e) {
                //error_log($e);
                echo $e . "errorkhsuh";
                $user_profile = array();
                $user = null;
                //exit;
            }

            if($this->Video->save($this->data)) {
                //echo "save";
                $this->Session->write('site_user', $this->data['Video']['posted_by']);
                //find user by user id
                $user_name = $this->Member->field('username', array('Member.id' => $this->data['Video']['posted_by']));
                $this->Session->write('site_username', $user_name);
                $this->Session->write('successMessage', "Video has been successfully updated"); 
            } else {
                //echo "not save";
                $this->Session->write('successMessage', "Error in new video details updation"); 
                //echo $e . "errorkhsuh";
            }           
        }
        else
        {

            $this->Session->write('successMessage', "Error! Please complete the form."); 
        }

        exit;
    }
    else 
    {
        //$this->check_profile_login();
        $this->data['Video']['post_to_facebook_timeline'] = 1;
        $this->data['Video']['content_type'] = 'image';
    }

}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.