ShoeLace1291 Posted October 5, 2010 Share Posted October 5, 2010 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.