diff --git a/source/accnt_mgmt.rst b/source/accnt_mgmt.rst index 578c579..efe0d6f 100644 --- a/source/accnt_mgmt.rst +++ b/source/accnt_mgmt.rst @@ -1237,7 +1237,7 @@ If your passwords are hashed with MD5 or SHA, you can import them by creating a * - ``BASE64_SALT`` - The salt byte array used to salt the first hash iteration. - - String (Base64). If your password hashes do not have salt, you can omit it entirely. + - String (Base64). If your password hashes were not salted, this must be the empty string (such that the two dollar-sign delimiters appear right next to each other in the MCF String). * - ``BASE64_PASSWORD_HASH`` - The computed hash byte array. @@ -1925,10 +1925,6 @@ This query will match Accounts with a ``startDate`` value between ``2012-01-01`` For a full description please see :ref:`the Reference chapter `. -.. note:: - - This feature is currently in beta. If you have any questions, comments, or suggestions, reach out to us at support@stormpath.com. - .. _managing-account-pwd: 3.4. How to Manage an Account's Password diff --git a/source/auth_n.rst b/source/auth_n.rst index 3ab4da2..7a70a22 100644 --- a/source/auth_n.rst +++ b/source/auth_n.rst @@ -2712,7 +2712,7 @@ Step 5: Configure Your Application Your Stormpath Application Resource has two parts that are relevant to SAML: -1. An ``authorizedCallbackUri`` Array that defines the authorized URIs that the IdP can return your user to. These should be URIs that you host yourself. +1. An ``authorizedCallbackUri`` Array that defines the authorized URIs that the IdP can return your user to with the authentication result. These should be URIs that you host yourself. You should create any URIs here that you would like included as authorized callback URIs, to a maximum of 4000 characters in total length. @@ -3484,7 +3484,7 @@ The `claims `_ for the JWT body * - ``cb_uri`` - No - - The callback URI to use once the user takes an action on the ID Site or Identity provider. This must match a Authorized Callback URI on Application resource, otherwise the flow will default to the first Callback URI that does not contain a wildcard. + - The callback URI to use once the user takes an action on the ID Site or Identity provider. This URI will be passed a secure JWT as a URL parameter, and it's job will be to validate that JWT and return the Stormpath Account. This URI must match a Authorized Callback URI on an Application resource, otherwise the flow will default to the first Callback URI that does not contain a wildcard. * - ``jti`` - Yes diff --git a/source/code/java/authentication/refresh_access_token_req.java b/source/code/java/authentication/refresh_access_token_req.java index 22c9a5f..1d40c7e 100644 --- a/source/code/java/authentication/refresh_access_token_req.java +++ b/source/code/java/authentication/refresh_access_token_req.java @@ -1,4 +1,4 @@ -OAuthPasswordGrantRequestAuthentication request = +OAuthRefreshTokenRequestAuthentication request = OAuthRequests.OAUTH_REFRESH_TOKEN_REQUEST .builder() .setRefreshToken(refreshTokenString) diff --git a/source/reference.rst b/source/reference.rst index 6567389..cd6c5a8 100644 --- a/source/reference.rst +++ b/source/reference.rst @@ -741,10 +741,6 @@ Custom Data Search """""""""""""""""" - .. note:: - - This feature is currently in beta, any questions comments or suggestions, reach out to us at support@stormpath.com - It is also possible to search a collection's Custom Data. This means that you send a query to a collection: ``?customData.{key}={value}``