0

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);
}
Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574

1 Answers1

1

I figured it out,

The error was code 4700. We had to whitelist the redirect url in the app marketplace. It worked after that