Skip to content
This repository has been archived by the owner on Jan 5, 2019. It is now read-only.

Commit

Permalink
Merge pull request #438 from stormpath/develop
Browse files Browse the repository at this point in the history
Grab bag of updates and error fixes
  • Loading branch information
Jakub Swiatczak authored Jan 25, 2017
2 parents 98d4a83 + 6e3d44c commit 77a65c1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
6 changes: 1 addition & 5 deletions source/accnt_mgmt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 <search-customdata>`.

.. note::

This feature is currently in beta. If you have any questions, comments, or suggestions, reach out to us at [email protected].

.. _managing-account-pwd:

3.4. How to Manage an Account's Password
Expand Down
4 changes: 2 additions & 2 deletions source/auth_n.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -3484,7 +3484,7 @@ The `claims <https://tools.ietf.org/html/rfc7519#section-4.1>`_ 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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
OAuthPasswordGrantRequestAuthentication request =
OAuthRefreshTokenRequestAuthentication request =
OAuthRequests.OAUTH_REFRESH_TOKEN_REQUEST
.builder()
.setRefreshToken(refreshTokenString)
Expand Down
4 changes: 0 additions & 4 deletions source/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -741,10 +741,6 @@
Custom Data Search
""""""""""""""""""

.. note::

This feature is currently in beta, any questions comments or suggestions, reach out to us at [email protected]

It is also possible to search a collection's Custom Data. This means that you send a query to a collection:

``?customData.{key}={value}``
Expand Down

0 comments on commit 77a65c1

Please sign in to comment.