Skip to content

Commit bd84acb

Browse files
few changes
1 parent 7df751d commit bd84acb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ AndroidNetworking.post("https://fierce-cove-29863.herokuapp.com/createAnUser")
105105
}
106106
});
107107
```
108-
You can also post json, file ,etc in POST request like this.
108+
You can also post json, file, etc in POST request like this.
109109
```java
110110

111111
JSONObject jsonObject = new JSONObject();
@@ -532,8 +532,8 @@ AndroidNetworking.disableLogging(); // disable logging
532532
### Enabling GZIP From Client to Server
533533
```java
534534
// Enabling GZIP for Request (Not needed if your server doesn't support GZIP Compression), anyway responses
535-
from server are automatically unGzipped if required. So enable it only if you need your request to be
536-
Gzipped before sending to server(Make sure your server support GZIP Compression).
535+
// from server are automatically unGzipped if required. So enable it only if you need your request to be
536+
// Gzipped before sending to server(Make sure your server support GZIP Compression).
537537
OkHttpClient okHttpClient = new OkHttpClient().newBuilder()
538538
.addInterceptor(new GzipRequestInterceptor())
539539
.build();

0 commit comments

Comments
 (0)