http-request给出“消息有效负载类型”

时间:2015-08-08 08:48:07

标签: mule

我有一个需要在内部调用外部API调用的流,但它不断给我提供异常消息Message payload is of type: ...。我现在正在使用3.6.2。

<http:request-config name="ApiRest" protocol="HTTPS"   doc:name="HTTP Request Configuration" basePath="rest" host="${api.endpointUrl}" port="80">
    <oauth2:client-credentials-grant-type clientId="${api.client_id}" clientSecret="${api.client_secret}">
        <oauth2:token-request tokenUrl="${api.endpointUrl}/oauth/token" />
    </oauth2:client-credentials-grant-type>
</http:request-config>
<flow name="flow-1">
    // more components here...
    <http:request config-ref="ApiRest" path="/v1/users" method="GET" sendBodyMode="NEVER" doc:name="test">
        <http:request-builder/>
    </http:request>
</flow>

1 个答案:

答案 0 :(得分:0)

问题是HTTPS使用端口443,而不是80.这应该可以。