Closed westlinkin closed 2 years ago
2.3.1
feedback
stable
2.8.1
Android
I basicly use the code createGitlabIssueFromFeedback:
createGitlabIssueFromFeedback
final packageInfo = await PackageInfo.fromPlatform(); final deviceInfo = DeviceInfoPlugin(); final map = await deviceInfo.deviceInfo; var purchaseStatus = await checkSubscriptionStatus(); // Create issue var response = await http.post( Uri.https( 'gitlab.com', '/api/v4/projects/$projectId/issues', <String, String>{ 'title': feedback.text.padRight(80), 'description': 'platform: ${Platform.operatingSystem} (${Platform.operatingSystemVersion})\n' 'purchaseStatus: ${purchaseStatus.name()}\n' 'version: ${packageInfo.version}\n' 'buildNumber: ${packageInfo.buildNumber}\n' 'deviceInfo: ${_prettyPrintMap(map.toMap())}\n' '-----------------\n' '${feedback.text}\n' "${uploadResponseMap["markdown"] ?? "Missing image!"}", }, ), headers: { 'PRIVATE-TOKEN': apiToken, }, ); Logger().d('resp: ${response.body}');
But I got:
{"message":{"base":["Your issue has been recognized as spam. Please, change the content or solve the reCAPTCHA to proceed."]}}
Is there a way to fix that?
flutter doctor -v
[✓] Flutter (Channel stable, 2.8.1, on macOS 11.6.2 20G314 darwin-x64, locale en-US) • Flutter version 2.8.1 at /Users/Linkin/Study/flutter • Upstream repository https://github.com/flutter/flutter.git • Framework revision 77d935af4d (6 weeks ago), 2021-12-16 08:37:33 -0800 • Engine revision 890a5fca2e • Dart version 2.15.1 • Pub download mirror https://pub.flutter-io.cn • Flutter download mirror https://storage.flutter-io.cn [✓] Android toolchain - develop for Android devices (Android SDK version 31.0.0) • Android SDK at /Users/Linkin/Study/Android/android-sdk-macosx • Platform android-31, build-tools 31.0.0 • ANDROID_HOME = /Users/Linkin/Study/Android/android-sdk-macosx • Java binary at: /Users/Linkin/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/203.7935034/Android Studio.app/Contents/jre/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7281165) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS (Xcode 13.2.1) • Xcode at /Applications/Xcode.app/Contents/Developer • CocoaPods version 1.11.2 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 2020.3) • Android Studio at /Users/Linkin/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/203.7935034/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7281165) [✓] Android Studio (version 2020.3) • Android Studio at /Users/Linkin/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/203.7784292/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7281165) [✓] IntelliJ IDEA Ultimate Edition (version 2021.3.1) • IntelliJ at /Users/Linkin/Applications/JetBrains Toolbox/IntelliJ IDEA Ultimate.app • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart [✓] IntelliJ IDEA Ultimate Edition (version 2021.3.1) • IntelliJ at /Users/Linkin/Library/Application Support/JetBrains/Toolbox/apps/IDEA-U/ch-0/213.6461.79/IntelliJ IDEA.app • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart [✓] IntelliJ IDEA Ultimate Edition (version 2021.3) • IntelliJ at /Users/Linkin/Library/Application Support/JetBrains/Toolbox/apps/IDEA-U/ch-0/213.5744.223/IntelliJ IDEA.app • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart [✓] VS Code (version 1.58.2) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension can be installed from: 🔨 https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter [✓] Connected device (1 available) • Chrome (web) • chrome • web-javascript • Google Chrome 97.0.4692.99 ! Device 10.20.24.27:42631 is offline.
Unfortunately there's nothing I can do about that. Have you tried contacting GitLabs support and asking them why it's recognized as spam?
Version
2.3.1
Library
feedback
Flutter channel
stable
Flutter version
2.8.1
Platform
Android
Details
I basicly use the code
createGitlabIssueFromFeedback
:But I got:
Is there a way to fix that?
Steps to reproduce
Output of
flutter doctor -v