User Portlet User Portlet

Discussions
Suppose I have deployed this function to the cloud: AddTwo[n1_, n2_] := n1 + n2; I know how to invoke the API using an HTTP GET: http:// /AddTwo?n1=2&n2=2. What Content-Type and request body do I need to send in an HTTP POST in order for...