We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2e8551 commit 6f389cbCopy full SHA for 6f389cb
functions/redirector/lib/main.dart
@@ -1,4 +1,5 @@
1
import 'dart:async';
2
+import 'dart:convert';
3
import 'dart:io';
4
5
/// Redirector Function
@@ -17,6 +18,7 @@ Future<dynamic> main(final context) async {
17
18
context.log('Path: $path');
19
if (path.contains('/reset-password')) {
20
final queryParams = context.req.query as Map<String, dynamic>;
21
+ context.log('Query Params: ${json.encode(queryParams)}');
22
if (queryParams.isEmpty) {
23
return context.res.send('No Query Params', 400, {
24
'content-type': 'text/plain',
0 commit comments