我试图验证用户身份,并按照所有说明进行操作。更改了AndroidManifest方案,并在下面提供了join函数。如何解决呢?

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

最佳答案

我想到了,
错误代码为4700。我们必须在应用程序市场中将重定向网址列入白名单。在那之后

关于api - 使用zoom oauth2和flutter_web_auth的无效重定向错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/64523326/

10-09 20:49