0

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

  1. 创建私有公钥并将公钥发送到 NetSuite。
  2. 使用公司 ID、用户 ID 和当前时间戳生成令牌
  3. 构建了单点登录 URL

当我将 URL 重定向到浏览器时,我收到重定向到 NetSuite 客户登录或类似“系统维护期”的通知。获取 NetSuite 单点登录 jsp 页面应该怎么做?

提前谢谢

4

2 回答 2

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 管理员帐户。

于 2013-10-09T21:18:14.200 回答
0

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

于 2013-08-02T02:22:58.133 回答