标签: codeigniter oauth authorization
我需要覆盖CodeIgniter中某些控制器的配置文件中的uri_protocol。我需要将其更改为“PATH_INFO”,因为我使用Oauth 2.0,授权代码通过查询字符串返回。
提前致谢!
答案 0 :(得分:0)
我通过将行添加到配置文件
$_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO']; $config['uri_protocol'] = "PATH_INFO";