@@ -451,6 +451,8 @@ FirebaseUI supports the following configuration parameters.
451
451
<td >adminRestrictedOperation</td >
452
452
<td >No</td >
453
453
<td >
454
+ This setting is only applicable to "Google Cloud Identity Platform" projects.
455
+ Learn more about [ GCIP] ( https://cloud.google.com/identity-platform/ ) .
454
456
The object for configuring ` adminRestrictedOperation ` options, contains 3
455
457
fields:
456
458
` status(boolean) ` : This flag should mirror the project user actions
@@ -1074,6 +1076,14 @@ ui.start('#firebaseui-auth-container', {
1074
1076
// Additional state showPromo=1234 can be retrieved from URL on
1075
1077
// sign-in completion in signInSuccess callback by checking
1076
1078
// 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".
1077
1087
url: ' https://www.example.com/completeSignIn?showPromo=1234' ,
1078
1088
// Custom FDL domain.
1079
1089
dynamicLinkDomain: ' example.page.link' ,
@@ -1117,6 +1127,12 @@ if (firebase.auth().isSignInWithEmailLink(window.location.href)) {
1117
1127
Additional state passed in the <code >url</code > can be retrieved on sign-in
1118
1128
completion via the signInSuccess callbacks.
1119
1129
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
+
1120
1136
``` javascript
1121
1137
// ...
1122
1138
signInSuccessWithAuthResult : function (authResult , redirectUrl ) {
0 commit comments