You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 4, 2023. It is now read-only.
@@ -98,13 +134,12 @@ Don't forget to enable email-password login in your firebase instance.
98
134
password:'theirpassword'
99
135
}).then(
100
136
function (result) {
101
-
// the result object has these properties: uid, provider, expiresAtUnixEpochSeconds, profileImageURL, token
102
137
JSON.stringify(result);
103
138
},
104
139
function (errorMessage) {
105
140
console.log(errorMessage);
106
141
}
107
-
)
142
+
);
108
143
```
109
144
110
145
#### Managing email-password accounts
@@ -128,7 +163,7 @@ Don't forget to enable email-password login in your firebase instance.
128
163
okButtonText:"OK, got it"
129
164
})
130
165
}
131
-
)
166
+
);
132
167
```
133
168
134
169
#### Resetting a password
@@ -143,7 +178,7 @@ Don't forget to enable email-password login in your firebase instance.
143
178
function (errorMessage) {
144
179
console.log(errorMessage);
145
180
}
146
-
)
181
+
);
147
182
```
148
183
149
184
#### Changing a password
@@ -159,7 +194,7 @@ Don't forget to enable email-password login in your firebase instance.
159
194
function (errorMessage) {
160
195
console.log(errorMessage);
161
196
}
162
-
)
197
+
);
163
198
```
164
199
165
200
### Custom login
@@ -173,13 +208,12 @@ Use this login type to authenticate against firebase using a token generated by
173
208
token: token
174
209
}).then(
175
210
function (result) {
176
-
// the result object has these properties: uid, provider, expiresAtUnixEpochSeconds, profileImageURL, token
177
211
JSON.stringify(result);
178
212
},
179
213
function (errorMessage) {
180
214
console.log(errorMessage);
181
215
}
182
-
)
216
+
);
183
217
```
184
218
185
219
### Facebook login
@@ -199,7 +233,7 @@ Then add the following lines to your code and check for setup instructions for y
199
233
function (errorMessage) {
200
234
console.log(errorMessage);
201
235
}
202
-
)
236
+
);
203
237
```
204
238
205
239
For a complete list of the available scope permissions, visit Facebook's documentation: https://developers.facebook.com/docs/facebook-login/permissions.
@@ -251,7 +285,7 @@ Then add the following lines to your code and check for setup instructions for y
251
285
function (errorMessage) {
252
286
console.log(errorMessage);
253
287
}
254
-
)
288
+
);
255
289
```
256
290
257
291
#### iOS
@@ -296,7 +330,6 @@ a Firebase auth token for the currently logged in user.
0 commit comments