我试图用play.api.libs.ws.WS执行一个职位,但我无法弄清楚
如何设置参数,我的代码:
如何设置参数,我的代码:
Promise<Response> promise = WS.url(Play.application().configuration() .getString("sms.service.url")).post();
.post take(T body,play.api.http.Writeable wrt,play.api.http.ContentTypeOf ct)
但我不明白我应该如何通过params那里.
文档仅说明:
Promise<WS.Response> result = WS.url("http://localhost:9001").post("content");
如何设置内容? param1 = foo和param2 = bar?
解决方法
尝试构建这样的请求:
WS.url("http://localhost:9001") .setQueryParameter("param1","foo") .setQueryParameter("param2","bar") .post("content");
方法url(java.lang.String url)返回一个WS.WSRequestHolder引用,可用于使用链接到setQueryParameter
的调用来修改原始请求.