An open API service indexing awesome lists of open source software.

https://github.com/sjonhortensius/toobasic-rpc

A very basic Json &XmlRpcClient for PHP, with SCGI support
https://github.com/sjonhortensius/toobasic-rpc

json-rpc-client scgi xml-rpc-client

Last synced: about 2 months ago
JSON representation

A very basic Json &XmlRpcClient for PHP, with SCGI support

Awesome Lists containing this project

README

        

Contains a JSON-RPC and XML-RPC client; with support for SCGI. Any method the server supports (eg. `getInfo` below), can be called as a method on the client. Here's an example how to use it to connect to bitcoin:

```php
getinfo());
```

Here's an example how Transports can be chained for example for utorrent, to perform XMLRPC requests over SCGI:

```php
system->listMethods());
```
Here's an example how to connect to ethereum over json-rpc:
```php
eth_syncing());
```