Restler3 RC4:oAuth不起作用

时间:2013-09-19 13:10:55

标签: php oauth-2.0 restler

刚刚更新了我的restler 3以发布候选4以尝试oAuth2实现。我有一个restler 3服务器和客户端,服务器应该提供oAuth2.0服务器,客户端应该实现oAuth2.0。但是oAuth2.0客户端示例index.php页面保持为空。 我错了什么?我将所有权限递归地设置为777并安装了composer的任何依赖项(我是作曲家的新手)。但这些东西被下载到restler的供应商文件夹,所以就在那里。

感谢您的阅读和回答。 扬

1 个答案:

答案 0 :(得分:0)

.htaccess文件会关闭display_errors。这就是你得到空白回复的原因。

如下所示更改

DirectoryIndex index.php
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^$ index.php [QSA,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<IfModule mod_php5.c>
    php_flag display_errors On
</IfModule>

然后你会得到线索!