我正在使用Typhoeus,希望在url参数中发送一个数组。
通过此:
/event?groups[]=open-forum&groups[]=armory-films
代替此:
/event?groups[0]=open-forum&groups[1]=armory-films
通过param inside ethon看似看起来的问题是可能的:
params_encoding and takes :rack
但是,当我添加该参数时,如何将其添加到typheus请求中
Typhoeus::Request.new(endpoint,
method: :put,
headers: HEADERS,
params_encoding: :rack,
params: {
status: 'close',
shutdown_on: I18n.l(closed_at, format: :es),
affected_external_id: reference,
fqdns:fqdns
})
我得到:
The option: params_encoding is invalid.