クライアントからXMLを送ってサーバーのAPIを叩くスクリプト
sample.rb
require 'xmlrpc/client'
client = XMLRPC::Client.new2('APIのURL')
param = {'カラム名1' => '値', 'カラム名2' => '値', 'カラム名3' => '値'}
client.call('メソッド名', param)
主にサーバー側のデータを書き換えるために使う。
新たにgemのインストールは不要。
Go to list of users who liked
More than 5 years have passed since last update.
クライアントからXMLを送ってサーバーのAPIを叩くスクリプト
require 'xmlrpc/client'
client = XMLRPC::Client.new2('APIのURL')
param = {'カラム名1' => '値', 'カラム名2' => '値', 'カラム名3' => '値'}
client.call('メソッド名', param)
主にサーバー側のデータを書き換えるために使う。
新たにgemのインストールは不要。
Register as a new user and use Qiita more conveniently
Go to list of users who liked