# nativescript-okhttp **Repository Path**: mirrors_NativeScript/nativescript-okhttp ## Basic Information - **Project Name**: nativescript-okhttp - **Description**: NativeScript plugin for the OkHttp Android library. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-02-13 - **Last Updated**: 2026-01-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # NativeScript plugin for OkHttp [OkHttp](http://square.github.io/okhttp/) is an HTTP client that supports: - HTTP/2 and SPDY support allows all requests to the same host to share a socket. - Connection pooling reduces request latency (if SPDY isn’t available). - Transparent GZIP shrinks download sizes. - Response caching avoids the network completely for repeat requests. ![](http://content.screencast.com/users/kiril/folders/Jing/media/fd6b67b1-ffed-48ec-b16c-554dcb08af8f/2015-10-19_1516.png) # Installation Run the following command from the root of your project: ``` $ tns plugin add nativescript-okhttp ``` This command automatically installs the necessary files, as well as stores nativescript-okhttp as a dependency in your project's `package.json` file. # Usage To use the social share module you must first `require()` it. After you `require()` the module you have access to its APIs. ``` js var okHttp = require("nativescript-okhttp"); ``` # API ### getString(url) The `getString()` method downloads a URL as a string. ``` js var okHttp = require("nativescript-okhttp"); function pageLoaded(args) { var result = okHttp.getString("http://www.google.com/"); console.log(result); } exports.pageLoaded = pageLoaded; ``` ### getJSON(url) The `getJSON()` method downloads a URL as a string. ``` js var okHttp = require("nativescript-okhttp"); function pageLoaded(args) { var json = okHttp.getJSON("https://api.github.com/gists/c2a7c39532239ff261be"); console.log("JSON url: " + json.url); } exports.pageLoaded = pageLoaded; ``` ### getImage(url) The `getImage()` method returns an image as a stream from a remote URL. In this example, we will download an image from umgur (http://i.imgur.com/sXG9IHW.jpg) and we will share it ot Facebook using a social share plugin by @tjvantoll (https://github.com/tjvantoll/nativescript-social-share). ![](http://content.screencast.com/users/kiril/folders/Jing/media/829344ad-7cb3-4e2a-8741-571d8c7a8fdc/2015-10-19_1516.png) ``` js var socialShare = require("nativescript-social-share"); var imageSource = require("image-source"); var okHttp = require("nativescript-okhttp"); function pageLoaded(args) { var inputStream = okHttp.getImage("http://i.imgur.com/sXG9IHW.jpg"); var image = imageSource.fromData(inputStream); socialShare.shareImage(image); } exports.pageLoaded = pageLoaded; ``` ![](http://content.screencast.com/users/kiril/folders/Jing/media/4faa243e-09f0-458c-a7a2-80e86c6be698/2015-10-19_1517.png) ![](http://content.screencast.com/users/kiril/folders/Jing/media/844cc4d0-8a34-4341-8730-ead1f2e002ea/2015-10-19_1517.png)