How to let Facebook Login button redirect to a particular URL ?
Facebook login is a popular way for web developer these days to capture user data and at the same time login the user to the protected part of their website. A common question about what happen next after authenticating the user is :
Is there a way to redirect to a URL after the user successfully logs in?
Yes, you can redirect your user to a particular page after authentication by including the redirect_uri
parameter.
$params = array(
'scope' => 'read_stream, friends_likes',
'redirect_uri' => 'https://www.myapp.com/post_login_page'
);
$loginUrl = $facebook->getLoginUrl($params);
In the event, that you get this error message returned :
"error": {
"message": "Error validating verification code.",
"type": "OAuthException"
}
Go to https://developers.facebook.com/apps
Make sure that the Canvas URL is set up correctly and the redirect_uri
must be one of the URI under the Canvas URL
For example, your canvas URL value is set to http://www.myapps.com
, the redirect_uri
must be http://www.myapps.com/something or http://www.myapps.com/somecontroller and NOT http://www.someoneelseapps.com/something
Hope this tutorial can be useful.
Reference :
https://developers.facebook.com/docs/reference/php/facebook-getLoginUrl
See also : Facebook PHP getUser() returns 0
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.3k Golang : Ackermann function example
+9.1k Golang : How to find out similarity between two strings with Jaro-Winkler Distance?
+21.3k Golang : How to read float value from standard input ?
+8.1k Swift : Convert (cast) Character to Integer?
+12.5k Golang : Drop cookie to visitor's browser and http.SetCookie() example
+5.2k Golang : How to deal with configuration data?
+12.5k Golang : Sort and reverse sort a slice of bytes
+13.7k Golang : Gin framework accept query string by post request example
+10.1k Golang : How to check if a website is served via HTTPS
+10.7k Golang : Get UDP client IP address and differentiate clients by port number
+47.5k Golang : Convert int to byte array([]byte)
+6.7k Mac/Linux/Windows : Get CPU information from command line