nativescript-http icon indicating copy to clipboard operation
nativescript-http copied to clipboard

The best way to do HTTP requests in NativeScript, a drop-in replacement for the core HTTP with important improvements and additions like proper connection pooling, form data support and certificate pi...

Results 17 nativescript-http issues
Sort by recently updated
recently updated
newest added

## PR Checklist - [x] The PR title follows our guidelines: https://github.com/NativeScript/NativeScript/blob/master/CONTRIBUTING.md#commit-messages. - [x] There is an issue for the bug/feature this PR is for. To avoid wasting your time,...

Hi! 👋 Discovered an issue where requests in Android fail with a `okhttp3.internal.http2.StreamResetException: stream was reset: INTERNAL_ERROR` Now, this is mentioned [here](https://github.com/square/okhttp/issues/3936) as a server side issue - however in...

Bumps [webpack](https://github.com/webpack/webpack) from 5.73.0 to 5.76.1. Release notes Sourced from webpack's releases. v5.76.1 Fixed Added assert/strict built-in to NodeTargetPlugin Revert Improve performance of hashRegExp lookup by @​ryanwilsonperkin in webpack/webpack#16759 v5.76.0...

dependencies

Bumps [webpack](https://github.com/webpack/webpack) from 5.73.0 to 5.76.1. Release notes Sourced from webpack's releases. v5.76.1 Fixed Added assert/strict built-in to NodeTargetPlugin Revert Improve performance of hashRegExp lookup by @​ryanwilsonperkin in webpack/webpack#16759 v5.76.0...

dependencies

Bumps [webpack](https://github.com/webpack/webpack) from 5.73.0 to 5.76.1. Release notes Sourced from webpack's releases. v5.76.1 Fixed Added assert/strict built-in to NodeTargetPlugin Revert Improve performance of hashRegExp lookup by @​ryanwilsonperkin in webpack/webpack#16759 v5.76.0...

dependencies

NativeScript: 8.3.3 Android: v13 on Pixel 7 I have been using a self signed cert on Android for development successfully by a using a void trust manager. Setting `HttpsURLConnection.setDefaultSSLSocketFactory` seems...

how can the cookie jars be read after an http call was responded with "set-cookie" header. please keep in mind that the actual http response was a redirect, so that...

As I understand it (absolutely could be wrong), 1. Certificate pinning is on the outs, with [Android explicitly recommending against it](https://developer.android.com/training/articles/security-ssl#Pinning). 2. Certificate transparency is a useful alternative to pinning....

enhancement
help wanted

Any possibility of providing support for the new HTTP/3 spec? There seem to be some native implementations already available. Maybe something to have on the horizon.

When i do ```js let res = await Http.request({ url:"xxxxx", method: "DELETE, headers: { Authorization: "Bearer XXXX" } }); console.log("res",res); ``` and the server responds with an empty body (which...