2016-06-07 52 views
1

我已經做了一個API,我想訪問一個郵政電話。我做的壺以下轉變:enter image description here如何在pentaho-spoon的post調用中傳遞參數?

與PARAMS場中生成行作爲步驟:

enter image description here

和REST客戶步配置爲:

enter image description here

,但我在服務器端我的post調用中無法獲得任何參數。如果我用Python語言編寫一個簡單的電話後如:

import requests 

url = "http://10.131.70.73:5000/searchByLatest" 

payload = {'search_query': 'donald trump', 'till_date': 'Tuesday, 7 June 2016 at 10:40'} 

r = requests.post(url, params=payload) 
print(r.text) 
print(r.status_code) 

我能夠通過request.args.get("search_query")在燒瓶中的客戶端來獲取參數。如何在水壺中進行等效POST調用?

回答

1

我終於自己找到了解決方案。描述生成行領域:

enter image description here

,並在REST客戶端步驟的參數選項卡中,我們應該得到相同的字段:

enter image description here

運行完美!