@@ -451,6 +451,8 @@ FirebaseUI supports the following configuration parameters.
451451<td >adminRestrictedOperation</td >
452452<td >No</td >
453453<td >
454+ This setting is only applicable to "Google Cloud Identity Platform" projects.
455+ Learn more about [ GCIP] ( https://cloud.google.com/identity-platform/ ) .
454456 The object for configuring ` adminRestrictedOperation ` options, contains 3
455457 fields:
456458 ` status(boolean) ` : This flag should mirror the project user actions
@@ -1074,6 +1076,14 @@ ui.start('#firebaseui-auth-container', {
10741076 // Additional state showPromo=1234 can be retrieved from URL on
10751077 // sign-in completion in signInSuccess callback by checking
10761078 // window.location.href.
1079+ // If you are using a fragment in the URL, additional FirebaseUI
1080+ // parameters will be appended to the query string component instead
1081+ // of the fragment.
1082+ // So for a url: https://www.example.com/#/signin
1083+ // The completion URL will take the form:
1084+ // https://www.example.com/?uid_sid=xyz&ui_sd=0#/signin
1085+ // This should be taken into account when using frameworks with "hash
1086+ // routing".
10771087 url: ' https://www.example.com/completeSignIn?showPromo=1234' ,
10781088 // Custom FDL domain.
10791089 dynamicLinkDomain: ' example.page.link' ,
@@ -1117,6 +1127,12 @@ if (firebase.auth().isSignInWithEmailLink(window.location.href)) {
11171127Additional state passed in the <code >url</code > can be retrieved on sign-in
11181128completion via the signInSuccess callbacks.
11191129
1130+ If you are using a fragment in the URL, additional FirebaseUI parameters will be
1131+ appended to the query string component instead of the fragment.
1132+ So for a url ` https://www.example.com/#/signin ` , the completion URL will take
1133+ the form ` https://www.example.com/?uid_sid=xyz&ui_sd=0#/signin ` .
1134+ This should be taken into account when using frameworks with "hash routing".
1135+
11201136``` javascript
11211137// ...
11221138signInSuccessWithAuthResult : function (authResult , redirectUrl ) {
0 commit comments