I want to implement of Cloudflare turnstile in Flutter app so how do I add a view of Captcha
can I use Server-side validation of Cloudflare turnstile and for view, and create my own view is it proper, or is any package available for that
for example in react react-turnstile package available
fritex
February 28, 2024, 11:58am
3
I’d suggest you to follow-up the ideas and discussion to find a solution for this on the GitHub, since this is what I’ve found so far and the CF team is working on it:
opened 05:26AM - 03 Aug 23 UTC
bug
<!--
❗️❗️❗️ IMPORTANT ❗️❗️❗️
DON'T DELETE THIS TEMPLATE! USE IT TO W… RITE YOUR ISSUE.
If you delete this and you don't give me enough info,
how would you expect me to solve your issue? Thanks.
Also, before posting a new issue, make sure to check the following points!
You may already find an answer to your problem!
❗️❗️❗️ IMPORTANT ❗️❗️❗️
-->
- [x] I have read the [Getting Started](https://inappwebview.dev/docs/intro/) section
- [x] I have already searched for the same problem
## Environment
| Technology | Version |
|-----------------| ------------- |
| Flutter version | Flutter version 3.10.6 on channel stable |
| Plugin version | 6.0.0-beta.24+1 |
| Android version | Android 12 |
| iOS version | iOS 16.x |
| macOS version | 13.4.1 (c)(22F770820d) |
| Xcode version | Build 14E300c |
Device information:
## Description
I am loading a webpage with "Cloudflare Turnstile" applied.
However, the webview of flutter_inappwebview seems to have a security error.
All other browsers (PC, Mobile) are passing fine.
I would like to know what the problem is.
If anyone has any knowledge about this issue, please help me.
Thank you.
## Steps to reproduce
**My InAppWebViewSettings**
```
var inAppWebViewSettings = InAppWebViewSettings(
useShouldOverrideUrlLoading: true,
transparentBackground: true,
javaScriptCanOpenWindowsAutomatically: true,
allowFileAccessFromFileURLs: true,
allowUniversalAccessFromFileURLs: true,
verticalScrollBarEnabled: false,
horizontalScrollBarEnabled: false,
supportMultipleWindows: true,
useHybridComposition: true,
isInspectable: true,
);
```
**Test Page**
[https://app.1inch.io/](https://app.1inch.io/)
## Images
## Stacktrace/Logcat