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 に答える