I am trying to authenticate the user and followed all the instructions. Changed AndroidManifest scheme and the join function is provided below. How to solve this?
Future<void> onJoin() async {
//setState(() {});
final result = await FlutterWebAuth.authenticate(
url:
"https://zoom.us/oauth/authorize?response_type=code&client_id=ZfyVB0fURFCcMywvpQOjxA&redirect_uri=https%3A%2F%2Fdoorapp%3A%2F",
callbackUrlScheme: "doorapp",
);
print(result);
}