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 6f389cb commit f76d1d6Copy full SHA for f76d1d6
functions/redirector/lib/main.dart
@@ -1,5 +1,4 @@
1
import 'dart:async';
2
-import 'dart:convert';
3
import 'dart:io';
4
5
/// Redirector Function
@@ -18,7 +17,7 @@ Future<dynamic> main(final context) async {
18
17
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)}');
+ context.log('full url: ${context.req.url}');
22
if (queryParams.isEmpty) {
23
return context.res.send('No Query Params', 400, {
24
'content-type': 'text/plain',
0 commit comments