Hi, can someone help me with this problem? Everything works great if the user has approved the app on Facebook, but when new user need to auth. this app i’m getting error:
API Error Code: 191
API Error Description: The specified URL is not owned by the application
Error Message: Invalid redirect_uri: Given URL is not allowed by the Application configuration.
I guess that the problem is with URL FB is sending back to CI, allowed characters, index.php or no idnex.php… In my apps setting on FB everything is configured ok (the app is working fine if you already auth.), Also everything is fine in config/fb_ignited.php.
This is my .htaccess:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
and my config.php:
$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';
I already tried with or without .htaccess and i tried to change uri_protocol to all other options and it’s not working for me.
Thanks a lot if someone can help.