2
我想使用RestClient gem發送帶有POST
請求的參數(但我不想將參數作爲JSON傳遞)。在RestClient post請求中傳遞參數
在GET
要求,我將有:
url = "http://example.com?param1=foo¶m2=bar"
RestClient.get url
如何傳遞相同PARAMS但在一個POST
請求沒有通過JSON?
我想使用RestClient gem發送帶有POST
請求的參數(但我不想將參數作爲JSON傳遞)。在RestClient post請求中傳遞參數
在GET
要求,我將有:
url = "http://example.com?param1=foo¶m2=bar"
RestClient.get url
如何傳遞相同PARAMS但在一個POST
請求沒有通過JSON?
閱讀自述文件Rest-client git,它有很多示例顯示不同類型的請求。
的回答,請嘗試:
url = "http://example.com"
RestClient.post url,:param1=>foo, :param2=>bar