Jump to content

Facebook Connect and CodeIgniter


ShoeLace1291

Recommended Posts

I've found a library for using Facebook Connect on CodeIgniter.  Found here: http://www.haughin.com/code/facebook/  I'm assuming the same functions from the facebook connect api can be used with the CI library($this->facebook_connect->function), but there is absolutely no documentation on it.  What I want to do, is create a custom wall post form.  I want to have the users create their message and when submitted, I want to add the message to both their facebook wall, and my database so they appear on my site as well.

 

The problem with facebook's wall post form is: 1) it's javascript and 2) all it does is post it to facebook.  So basically I want to do something like this:

 

if($this->form_validation->run() == FALSE){
       $this->load->view('wallpost_form');
} else {
    post_to_wall($user, $message); //However the function will work
   $query = "yadayadayada"
}

 

Any ideas?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.