https://github.com/gleapsdk/gleap_http_interceptor
https://github.com/gleapsdk/gleap_http_interceptor
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gleapsdk/gleap_http_interceptor
- Owner: GleapSDK
- License: other
- Created: 2021-11-17T15:50:22.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T07:48:39.000Z (almost 2 years ago)
- Last Synced: 2025-02-23T14:29:07.170Z (over 1 year ago)
- Language: Dart
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Gleap Http Interceptor

A Http Interceptor for the [Gleap SDK](https://pub.dev/packages/gleap_sdk).
# Report and Fix Bugs the Easy Way
Gleap helps developers build the best software faster. It is your affordable in-app bug reporting tool for apps, websites and industrial applications.
Checkout our [website](https://gleap.io) to learn more about gleap.
## Docs & Examples
Checkout our [documentation](https://docs.gleap.io/docs/flutter-sdk) for full reference. Include the following dependency in your pubspec.yml:
```dart
dependencies:
gleap_http_interceptor: "^1.2.4"
```
**Flutter v2 Support**
If you are using Flutter < v3, please import the gleap_sdk as shown below:
```dart
dependencies:
gleap_dio_interceptor:
git:
url: https://github.com/GleapSDK/gleap_http_interceptor.git
ref: flutter-v2
```
```dart
Client client = InterceptedClient.build(interceptors: [
GleapHttpInterceptor(),
]);
client.get(Uri.parse("https://example.com"));
```