HttpAgent


Source link: https://github.com/studioidan/HttpAgent

HttpAgent

super simple library to manage http requests.

Gradle

dependencies {

  compile 'com.studioidan.httpagent:httpagent:1.0.14@aar' 
}
 

Now see how easy it becomes with HttpAgent!

Get Request

HttpAgent.get("www.example.com/api/books")

.goJson(new JsonCallback() {

 @Override

 protected void onDone(boolean success, JSONObject jsonObject) {

}

}
);

or you can go jsonArray like so

HttpAgent.get("www.example.com/api/books")

.goJsonArray(new JsonArrayCallback() {

 @Override

 protected void onDone(boolean success, JSONArray jsonArray) {

}

}
);

Need to add url parameters? no problem!

HttpAgent.get("www.example.com/api/books")

.queryParams("key_1","value_1","key_2","value_2","key_N","value_N")

.goJsonArray(new JsonArrayCallback() {

 @Override

 protected void onDone(boolean success, JSONArray jsonArray) {

}

}
);

Post? Put? Delete? of course...

HttpAgent.post("www.example.com/api/books");
 HttpAgent.put("www.example.com/api/books");
 HttpAgent.delete("www.example.com/api/books")

Adding body is also simple...

HttpAgent.post("www.example.com/api/books")

.queryParams("key_1","value_1","key_2","value_2","key_N","value_N")

.withBody("{
name:popapp ,age:27
}
")

.goJsonArray(new JsonArrayCallback() {

 @Override

 protected void onDone(boolean success, JSONArray jsonArray) {

  
}

}
);

Or even more simple...

HttpAgent.post("www.example.com/api/books")

.queryParams("key_1","value_1","key_2","value_2","key_N","value_N")

.withBody("key_1","value_1","key_2","value_2","key_N","value_N") // will be converted to json

.goJsonArray(new JsonArrayCallback() {

 @Override

 protected void onDone(boolean success, JSONArray jsonArray) {

  
}

}
);

Don't forget the headers...

HttpAgent.get("http://192.168.88.253/Video/inputs/channels/1")

 .headers("Authorization", "Basic YWRtaW46P3V5YFZhNzAw", "Content-Type", "application/json")

 .goString(new StringCallback() {

  @Override

  protected void onDone(boolean success, String stringResults) {

Log.d(TAG, stringResults);

  
}

 
}
);

Any request can be made with one of the following callbacks:

Get a string results

goString(new StringCallback() {

 @Override

 protected void onDone(boolean success, String results) {

}

}
)

Get Json results

goJson(new JsonCallback() {

 @Override

 protected void onDone(boolean success, JSONObject jsonObject) {

}

}
)

Get JsonArray results

goJsonArray(new JsonArrayCallback() {

 @Override

 protected void onDone(boolean success, JSONArray jsonArray) {

  
}

}
);

Get no results, Just send the request

go(new SuccessCallback() {

 @Override

 protected void onDone(boolean success) {

}

}
)

You also have access to those on any callback

HttpAgent.post("www.example.com/api/books")

.queryParams("key_1","value_1","key_2","value_2","key_N","value_N")

.withBody("{
name:popapp ,age:27
}
")

.goJson(new JsonCallback() {

 @Override

 protected void onDone(boolean success, JSONObject jsonObject) {

  getErrorMessage();
 //returns error message if exists.

  getResponseCode();
 // well, it's obvious...

  getStringResults();
 // returns results as as string.

 
}

}
);

Resources

Solid is an Android library for data handling.

It provides:

  • SolidList - an immutable, parcelable collection.
  • Lightweight and composable data streams.
  • Primitive array / wrapped array converters.
  • Data analysis algorithms.

A velocimeter View for Android.

Typekit is a library that help you quick change default font of your android application. You don't need to add any custom view or tag to your current xml layout file. You make a quick config in your application class and change the font that you need specific for a style.

log

Log is a super-simple drop-in replacement for android.util.Log that can also be used in normal Java projects.

An example application for the Android Data Binding library, implementing retrofit to fetch a list of repositories and update a RecyclerView using the binding methods to display each repository as a view component.

Wrapper around the android Camera class that simplifies its usage.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes