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
https://forums.phpfreaks.com/topic/215251-facebook-connect-and-codeigniter/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.