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'm using the below plugin in my app to get facebook connect working with auth.

https://github.com/webtechnick/CakePHP-Facebook-Plugin

The thing is I want to save user data into users table manually.

So I'm trying like this

public function beforeFacebookSave(){
//$this->Auth->autoRedirect = false;
debug($this->Connect->user('email'));
$this->Connect->authUser['User']['email'] = $this->Connect->user('email');
$this->Connect->authUser['User']['username'] = $this->Connect->user('username');
//Must return true or will not save.
$this->redirect(array('controller' => 'users', 'action' => 'beforefbsave', '?' => array('param1' => $this->Connect->user('email')))); 
//return true;

}

The redirect is getting into a loop and getting an error

The page isn't redirecting properly

Is this a proper way or have follow some other method to get this done?

share|improve this question
Chan you show the code of "beforefbsave" ? – Guilherme Torres Castro Jul 24 '12 at 14:55
@Guilhereme: its from the plugin, I was able to figure it out properly :( – Vijay Jul 24 '12 at 17:34

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.