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.
2 parents 81deb09 + c8420b6 commit 3772807Copy full SHA for 3772807
templates/flutter/lib/src/client_browser.dart.twig
@@ -141,13 +141,6 @@ class ClientBrowser extends ClientBase with ClientMixin {
141
return FlutterWebAuth.authenticate(
142
url: url.toString(),
143
callbackUrlScheme: "appwrite-callback-" + config['project']!,
144
- ).then((value) async {
145
- Uri url = Uri.parse(value);
146
- final key = url.queryParameters['key'];
147
- final secret = url.queryParameters['secret'];
148
- if (key == null || secret == null) {
149
- throw AppwriteException(
150
- "Invalid OAuth2 Response. Key and Secret not available.", 500);
151
- }
152
- }); }
+ );
+ }
153
}
0 commit comments