{"id":49571540,"url":"https://github.com/bugsnag/bugsnag-flutter-http-client","last_synced_at":"2026-05-03T14:32:12.356Z","repository":{"id":221133623,"uuid":"731926177","full_name":"bugsnag/bugsnag-flutter-http-client","owner":"bugsnag","description":"A wrapper for Dart's HTTP package for BugSnag SDKs.","archived":false,"fork":false,"pushed_at":"2024-06-26T08:41:55.000Z","size":27,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":14,"default_branch":"main","last_synced_at":"2026-02-11T01:45:06.571Z","etag":null,"topics":["breadcrumbs","bugsnag","flutter","flutter-package","http","performance","platforms"],"latest_commit_sha":null,"homepage":"https://docs.bugsnag.com/platforms/flutter","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bugsnag.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-15T07:59:52.000Z","updated_at":"2024-06-26T08:41:59.000Z","dependencies_parsed_at":"2024-06-25T16:35:11.882Z","dependency_job_id":null,"html_url":"https://github.com/bugsnag/bugsnag-flutter-http-client","commit_stats":null,"previous_names":["bugsnag/bugsnag-flutter-http-client"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/bugsnag/bugsnag-flutter-http-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugsnag%2Fbugsnag-flutter-http-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugsnag%2Fbugsnag-flutter-http-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugsnag%2Fbugsnag-flutter-http-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugsnag%2Fbugsnag-flutter-http-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bugsnag","download_url":"https://codeload.github.com/bugsnag/bugsnag-flutter-http-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugsnag%2Fbugsnag-flutter-http-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32573321,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["breadcrumbs","bugsnag","flutter","flutter-package","http","performance","platforms"],"created_at":"2026-05-03T14:32:11.573Z","updated_at":"2026-05-03T14:32:12.351Z","avatar_url":"https://github.com/bugsnag.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://www.bugsnag.com/platforms/flutter\"\u003e\n    \u003cpicture\u003e\n      \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://assets.smartbear.com/m/3dab7e6cf880aa2b/original/BugSnag-Repository-Header-Dark.svg\"\u003e\n      \u003cimg alt=\"SmartBear BugSnag logo\" src=\"https://assets.smartbear.com/m/3945e02cdc983893/original/BugSnag-Repository-Header-Light.svg\"\u003e\n    \u003c/picture\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n# BugSnag Flutter Http Client Wrapper\n\nA wrapper for the [Dart HTTP package](https://pub.dev/packages/http) that enables automated instrumentation via the BugSnag Performance SDK and Error Monitoring SDK. This package simplifies the process of tracking and monitoring HTTP requests in your Dart applications.\n\n## Features\n\n- **Automated Request Instrumentation**: Automatically creates network spans for HTTP requests and sends them to the BugSnag Performance dashboard.\n\n## Getting Started\n\nTo use the `BugSnagHttpClient` wrapper in your Dart project, first add the dependency to your `pubspec.yaml` file:\n\n```yaml\ndependencies:\n  bugsnag_http_client: ^1.0.0 # Use the latest version\n```\n\nThen, run pub get in your terminal to fetch the package.\n\n## Usage\nHere's a simple example of using BugSnagHttpClient:\n\n```dart\n\n// Import the wrapper\nimport 'package:bugsnag_http_client/bugsnag_http_client.dart' as http;\n\n// add Bugsnag Performance as a subscriber. This only needs to be done once in your apps lifecycle.\n  http.addSubscriber(BugsnagPerformance.networkInstrumentation);\n\n// Requests can be made staticly \n  http.get(Uri.parse(\"https://www.google.com\"));\n\n// or via a client instance\n  var client = http.BugSnagHttpClient();\n  client.get(Uri.parse(\"https://www.google.com\"));\n\n```\n\n## Support\n\n* [Read the integration guide](https://docs.bugsnag.com/performance/flutter/)\n* [Search open and closed issues](https://github.com/bugsnag/bugsnag-flutter-http-client/issues?utf8=✓\u0026q=is%3Aissue) for similar problems\n* [Report a bug or request a feature](https://github.com/bugsnag/bugsnag-flutter-http-client/issues/new)\n\n## License\n\nThe BugSnag Flutter Performance SDK is free software released under the MIT License. See the [LICENSE](./LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbugsnag%2Fbugsnag-flutter-http-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbugsnag%2Fbugsnag-flutter-http-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbugsnag%2Fbugsnag-flutter-http-client/lists"}