Skip to content

Instantly share code, notes, and snippets.

@gigo6000
Created November 10, 2011 06:10
Show Gist options
  • Save gigo6000/1354239 to your computer and use it in GitHub Desktop.
Save gigo6000/1354239 to your computer and use it in GitHub Desktop.
Connect to twitter
/**
* @Route("/connectTwitter", name="connect_twitter")
*
*/
public function connectTwitterAction()
{
$request = $this->get('request');
$twitter = $this->get('fos_twitter.service');
$authURL = $twitter->getLoginUrl($request);
$response = new RedirectResponse($authURL);
return $response;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment