#
httpclient
Here are 445 public repositories matching this topic...
HTTPlug, the HTTP client abstraction for PHP
-
Updated
Dec 30, 2019 - PHP
慕课网课程推荐 Java并发编程与高并发解决方案:http://coding.imooc.com/class/195.html Java开发企业级权限管理系统:http://coding.imooc.com/class/149.html github: https://github.com/kanwangzjm/funiture, spring项目,权限管理、系统监控、定时任务动态调整、qps限制、sql监控(邮件)、验证码服务、短链接服务、动态配置等
-
Updated
Nov 3, 2019 - Java
An enhanced HTTP client for Go
-
Updated
Jun 3, 2020 - Go
The minimalist framework of RESTful(server and client) - Resty
-
Updated
May 28, 2020 - Java
A tool for automated testing REST API, generating exquisite testing report and REST API documentation.
-
Updated
Dec 3, 2019 - Java
adamw
commented
Feb 17, 2020
Currently websockets are unsupported:
class SttpBackendStub[F[_], S] private (
monad: MonadError[F],
matchers: PartialFunction[Request[_, _], F[Response[_]]],
fallback: Option[SttpBackend[F, S, NothingT]]
) extends SttpBackend[F, S, NothingT] { // TODO
(note the TODO for the NothingT type parameter which specifies what kind of websockets are supported).
The bac
Simple Golang HTTPS/TLS Examples
go
golang
security
security-audit
awesome
tools
openssl
https
http2
secure
httpclient
libressl
security-hardening
https-server
security-scanner
security-tools
-
Updated
Apr 30, 2019
gout to become the Swiss Army Knife of the http client @^^@---> gout 是http client领域的瑞士军刀,小巧,强大,犀利。具体用法可看文档,如使用迷惑或者API用得不爽都可提issues
-
Updated
May 26, 2020 - Go
Open
README on Promise
JoxC
commented
Jul 3, 2016
The readme on Promise part is not proper. Actually, the project uses any-promise while not register bluebird. So people should be told to register their promise, otherwise the native promise would be used.
Testing layer for Microsoft's HttpClient library. Create canned responses using a fluent API.
-
Updated
Nov 18, 2019 - C#
http
promises
json
rest
unity
rest-api
unity3d
ajax
unity-scripts
http-client
web-services
unity-asset
http-requests
requests
httpclient
unity3d-plugin
rest-client
request-promise
async-requests
web-request
-
Updated
Jun 10, 2020 - C#
-
Updated
Jun 7, 2020 - Swift
Korio: Kotlin cORoutines I/O : Virtual File System + Async/Sync Streams + Async TCP Client/Server + WebSockets for Multiplatform Kotlin 1.3
kotlin
redis
yaml
elasticsearch
oauth
json
cassandra
asynchronous
xml
filesystem
websockets
coroutines
httpclient
vfs
jtransc
kotlin-coroutines
-
Updated
Jun 10, 2020 - Kotlin
YurunHttp 是开源的 PHP HTTP 客户端,支持链式操作,简单易用。完美支持Curl、Swoole 协程。QQ群:17916227
-
Updated
Apr 29, 2020 - PHP
CurlSharp - .Net binding and object-oriented wrapper for libcurl.
c-sharp
http
dotnet
curl
cookie
network
http2
http-client
dot-net
libcurl
httpclient
dot-net-client
transfer-data
curl-functions
curl-library
transfer-files
dotnet-framework
curl-commands
curl-multi
dotnet-library
-
Updated
May 2, 2017 - C#
-
Updated
May 9, 2020 - C#
Simpliest Fluent REST client for .NET
-
Updated
May 29, 2020 - C#
Angular 9 Example App, Angular CLI, Bootstrap, PWA, SSR, Angular Universal,Routing, Lazy loading, REST API, Components, Services, Reactive Forms
services
angular
pwa
service
ssr
leaflet
bootstrap4
starter
httpclient
angular-cli
api-rest
lazy-loading
postgresql-database
reactive-forms
angular-universal
angular-example-app
angular8
angular9
angular-starter
angular-8
-
Updated
Jun 2, 2020 - JavaScript
基于Spring生态打造的一系列来自业务上的快速开发模块集合,包括Spring MVC DeferredResult长轮询、Spring AOP统一切面日志、开箱即用的切面事务、统一异常响应处理、参数效验、国际化方案、动态添加拦截器与过滤器(可实现线上装载)、if/else业务拆分、幂等/去重/次数限制器、多级缓存、RestTemplate请求第三方签名/验签、Spring Security生成JWT Token、Redis延迟列队、Quartz定时任务、环形链表、监听Mybatis的CRUD、分布式锁(支持Redis和Zookeeper)、DDD架构模式的Event Bus、一主多从的多数据源切换方案、轻量级规则引擎、分布式配置动态刷新
i18n
java
redis
jwt
spring
spring-boot
cache
validator
limiter
zookeeper
eventbus
quartz
spring-security
httpclient
mybatis
exception-handler
ddd-architecture
delay-queue
spring-task
destributed-lock
-
Updated
Jun 2, 2020 - Java
Improve this page
Add a description, image, and links to the httpclient topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the httpclient topic, visit your repo's landing page and select "manage topics."


Description
Sending empty files in a multipart POST form is a proper use case due to web browsers supporting it.
I worked on a API layer using guzzle that had to work with an existing legacy codebase and trigger some actions (a proxy of some sort). There was a case where files had to be sent with empty content and would not work if you would omit them.
Example
_Currently no implem