netsuite sso登陆网址重定向到客户登录

时间:2013-04-16 12:19:51

标签: single-sign-on netsuite

我正在尝试实现入站单点登录功能,以便从外部应用程序登录到NetSuite。我遵循的步骤是:

  1. 创建私有公钥并将公钥发送到NetSuite。
  2. 使用公司ID,用户ID和当前时间戳生成令牌
  3. 构建了单点登录网址
  4. 当我将URL重定向到浏览器时,我获得了重定向到NetSuite客户登录或“系统维护期”之类的通知。如何获取NetSuite单点登录jsp页面?

    提前谢谢

2 个答案:

答案 0 :(得分:1)

If (your URL is well-formed) and 
   (your authorization token has the correct parameters) and
   (your authorization token's timestamp has not expired) and
   (your authorization token is encrypted correctly) and
   (your authorization token is encoded correctly) then

        if (this is the first time mapping the user_id) then
            You will be redirected to a special SSO first-time login page
        else
            You will be redirected to the user account's home page
        endif
else
    You will be redirected to the standard NetSuite login page
endif

请注意,组织的第一个映射必须映射到NetSuite管理员帐户。

答案 1 :(得分:0)

第一次执行“重定向”时,称为映射。这意味着您将SSO登录映射到标准NetSuite登录(电子邮件+密码)。您只需完成此步骤,然后在下次执行sso登录时,您应该被定向到NetSuite登录页面/仪表板。如果没有发生,那么SSO的设置方式就出现了问题。