IDP failing on test page

时间:2017-12-18 07:39:07

标签: debugging simplesamlphp

I have installed a simplesamlphp instance, and set it up for facebook login with success on the mysite.org/simplesaml interface.

I was wanting to get linkedin and twitter configured too. I followed the instructions for creating an app on the 3rd party site, and have triple checked my settings with regard to the keys and secrets on authsources.php. I have created an enable file in the relevant module directories.

When I test the authentication source, I get redirected to a blank page with, for example simplesaml/module.php/core/authenticate.php?as=linkedin as an address.

How can I troubleshoot this? I can not find any logs, and no error messages appear on the page. I have enabled showerrors and debug of saml and backtraces in the config/templates/config.php

I have tried disabling the facebook login (which still works fine) incase it was a problem with more than one module active at a time, but this did not help.

1 个答案:

答案 0 :(得分:0)

如果SSP找不到sspmod_*类,那么该模块未安装或未启用。基于类名sspmod_oauth_Consumer,我知道它正在modules/oauth文件夹中查找,我知道oauth模块默认包含(但未启用)。

要启用该模块,您可以执行touch modules/oauth/enable

相关问题