{"id":13647208,"url":"https://github.com/android-async-http/android-async-http","last_synced_at":"2025-05-12T13:11:24.996Z","repository":{"id":37822211,"uuid":"1388245","full_name":"android-async-http/android-async-http","owner":"android-async-http","description":"An asynchronous, callback-based Http client for Android built on top of Apache's HttpClient libraries.","archived":false,"fork":false,"pushed_at":"2023-04-17T14:55:24.000Z","size":3063,"stargazers_count":10636,"open_issues_count":117,"forks_count":4084,"subscribers_count":756,"default_branch":"master","last_synced_at":"2025-04-23T13:05:45.597Z","etag":null,"topics":["android","java"],"latest_commit_sha":null,"homepage":"https://github.com/android-async-http/android-async-http#this-project-is-no-longer-maintained-and-is-currently-deprecated-and-insecure-to-use","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/android-async-http.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2011-02-20T03:25:07.000Z","updated_at":"2025-04-23T03:25:32.000Z","dependencies_parsed_at":"2023-10-20T17:15:57.521Z","dependency_job_id":"2e355398-da52-4228-ad81-e2281c178412","html_url":"https://github.com/android-async-http/android-async-http","commit_stats":{"total_commits":719,"total_committers":98,"mean_commits":7.336734693877551,"dds":0.4770514603616134,"last_synced_commit":"018a0b8d96a0dd569de9f8128cfe5d030e0423ef"},"previous_names":["loopj/android-async-http"],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/android-async-http%2Fandroid-async-http","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/android-async-http%2Fandroid-async-http/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/android-async-http%2Fandroid-async-http/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/android-async-http%2Fandroid-async-http/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/android-async-http","download_url":"https://codeload.github.com/android-async-http/android-async-http/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253745169,"owners_count":21957318,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["android","java"],"created_at":"2024-08-02T01:03:24.151Z","updated_at":"2025-05-12T13:11:24.931Z","avatar_url":"https://github.com/android-async-http.png","language":"Java","readme":"Asynchronous Http Client for Android\n====================================\n[![Build Status](https://travis-ci.org/android-async-http/android-async-http.png?branch=master)](https://travis-ci.org/android-async-http/android-async-http)\n\nAn asynchronous, callback-based Http client for Android built on top of Apache's [HttpClient](https://hc.apache.org/httpcomponents-client-ga/) libraries.\n\nChangelog\n---------\n\nSee what is new in version 1.4.11 released on 29th June 2020\n\nhttps://github.com/android-async-http/android-async-http/blob/1.4.11/CHANGELOG.md\n\nJavadoc\n-------\n\nLatest Javadoc for 1.4.11 release are available here (also included in Maven repository):\n\nhttps://android-async-http.github.io/android-async-http/doc/\n\nFeatures\n--------\n- Make **asynchronous** HTTP requests, handle responses in **anonymous callbacks**\n- HTTP requests happen **outside the UI thread**\n- Requests use a **threadpool** to cap concurrent resource usage\n- GET/POST **params builder** (RequestParams)\n- **Multipart file uploads** with no additional third party libraries\n- Tiny size overhead to your application, only **60kb** for everything\n- Automatic smart **request retries** optimized for spotty mobile connections\n- Automatic **gzip** response decoding support for super-fast requests\n- Optional built-in response parsing into **JSON** (JsonHttpResponseHandler)\n- Optional **persistent cookie store**, saves cookies into your app's SharedPreferences\n- Support sni with Conscrypt on older android device ([wiki](https://github.com/android-async-http/android-async-http/wiki/Support-SNI-on-lower-android-device))\n\nExamples\n--------\n\nFor inspiration and testing on device we've provided Sample Application.  \nSee individual samples [here on Github](https://github.com/android-async-http/android-async-http/tree/1.4.11/sample/src/main/java/com/loopj/android/http/sample)  \nTo run Sample application, simply clone the repository and run this command, to install it on connected device  \n\n```java\ngradle :sample:installDebug\n```\n\nMaven\n-----\nYou can now integrate this library in your project via Maven. There are available two kind of builds.\n\n**releases, maven central**\n\nhttps://repo1.maven.org/maven2/com/loopj/android/android-async-http/\n```\nMaven URL: https://repo1.maven.org/maven2/\nGroupId: com.loopj.android\nArtifactId: android-async-http\nVersion: 1.4.11\nPackaging: JAR or AAR\n```\nGradle\n```groovy\nrepositories {\n  mavenCentral()\n}\n\ndependencies {\n  implementation 'com.loopj.android:android-async-http:1.4.11'\n}\n```\n\n**development snapshots**\nsnapshot might not be published yet\n\nhttps://oss.sonatype.org/content/repositories/snapshots/com/loopj/android/android-async-http/\n```\nMaven URL: https://oss.sonatype.org/content/repositories/snapshots/\nGroupId: com.loopj.android\nArtifactId: android-async-http\nVersion: 1.4.12-SNAPSHOT\nPackaging: JAR or AAR\n```\nGradle\n```groovy\nrepositories {\n  maven {\n    url 'https://oss.sonatype.org/content/repositories/snapshots/'\n  }\n}\ndependencies {\n  implementation 'com.loopj.android:android-async-http:1.4.11-SNAPSHOT'\n}\n```\n\nDocumentation, Features and Examples\n------------------------------------\nFull details and documentation can be found on the project page here:\n\nhttps://android-async-http.github.io/android-async-http/\n\n","funding_links":[],"categories":["Java","Android 应用","java","网络编程"],"sub_categories":["网络服务_其他"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandroid-async-http%2Fandroid-async-http","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandroid-async-http%2Fandroid-async-http","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandroid-async-http%2Fandroid-async-http/lists"}