0
我這段代碼紅寶石 - 可變
require 'riot_api'
# Create Instace of the API
ra = RiotApi::API.new :api_key => 'MY_API', :region => 'na', :debug => true
# Search by Summoner name
summoner_details = ra.summoner.name('GoncyRlz')
使一個電話,我得到這個響應
#<Hashie::Rash id=31029929 name="GoncyRlz" profile_icon_id=7 revision_date=1375116256000 revision_date_str="07/29/2013 04:44 PM UTC" summoner_level=30>
我想利用這個ID,並把它保存到一個響應的使用數據一個變量叫做summonerid
。我該如何接受它?
[以下是一些例子(https://github.com/Anujan /防暴API#使用) –