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);
}
4

1 回答 1

1

我想到了,

错误是代码 4700。我们必须将应用市场中的重定向 URL 列入白名单。在那之后它起作用了

于 2020-10-25T14:33:24.210 回答