CodeIgniter Forums
oauth callback wrong redirection - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: oauth callback wrong redirection (/showthread.php?tid=44789)



oauth callback wrong redirection - El Forum - 08-26-2011

[eluser]Unknown[/eluser]
Hi all, I'm working with Elliot Haughin's Twitter library. After twitter login I get this callback redirection http://social.mydomain.com/?/invite/twitter/auth .
Do you know why the "?" is inserted before the uri?

I have set PATH_INFO and allowed query strings. My htaccess is:

Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|robots\.txt|resources)
RewriteRule ^(.*)$ index.php/$1 [L]

Thanks.