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.

Laravel is an open-source PHP web development framework created by Taylor Otwell. Laravel helps you create applications using simple, expressive syntax.

learn more… | top users | synonyms

0
votes
1answer
51 views

Laravel OneAuth session issue

I have installed the OneAuth bundle for social integration on Laravel PHP and have ran into an issue. I can authorize the Facebook and Twitter applications through a call to ...
2
votes
1answer
138 views

Laravel - Facebook-sdk get user id

Mates, I'm trying to access user's personal information. I'm using Facebook-sdk Laravel Bundle. The thing is... <?php class App_Controller extends Base_Controller { public $restful = true; ...
0
votes
1answer
70 views

Redirect::to() clears Facebook access token

I'm building a Facebook app using laravel and I'm using Redirect::to('thank_you') in my code to redirect a user to a thank you page after they've submitted a form. function submitForm() { ...
0
votes
1answer
136 views

Laravel facebook-sdk bundle logout not working

I am using Facebook-sdk bundle for Laravel and everything works fine, except the logout link. When I click logout, I get redirected and all looks like it is working, but when it loads the page back, ...
0
votes
0answers
232 views

Session in Laravel does not work inside the Facebook Application Iframe

I have a facebook app that runs inside an iframe. After the user allow permissions from the app I'm expecting facebook to send me $_REQUEST variables that I use to retrieve user data and it is working ...
0
votes
1answer
294 views

Can't use Facebook PHP SDK with Laravel Social Sentry Auth

I've installed sentry social auth (http://www.getplatform.com/manuals/sentrysocial) on my site http://ratewait.com and it works fine. I'd like to offer functionality with the Facebook SDK now and ...
-2
votes
1answer
137 views

Facebook PHP SDK (latest - 16.1.13) & Access Token [closed]

I have the following code: public function get_facebook() { $loginUrl = Helpers::fbLogin(); if(Input::get('error')) { Session::flash('failure', 'Трябва да ...
0
votes
1answer
375 views

Facebook PHP SDK and Page Tabs; getUser() always returns 0 after authorization process

I'm a PHP developer and I have nice experience with Facebook PHP SDK, but this time I'm lost :( My problem is the following: I'm developing a facebook page tab application with Laravel, a PHP ...