...
Code Block |
---|
|
<nest.init>
<apiUrl>{$ctx:apiUrl}</apiUrl>
</nest.init> |
Properties
apiUrl
: The firebase url of the nest client. (E.g: https://firebase-apiserver01-tah01-iad01.dapi.production.nest.com:9553)clientId
: Identification for a control of Nest API.clientSecret
: Client secret of Nest API.code
: Authorization code to get the access token.
...
Code Block |
---|
language | xml |
---|
title | getAccessToken |
---|
|
<nest.getAccessToken>
<clientId>{$ctx:clientId}</clientId>
<clientSecret>{$ctx:clientSecret}</clientSecret>
<code>{$ctx:code}</code>
</nest.getAccessToken> |
Properties
apiUrl
: The firebase url of the nest client. (E.g: https://firebase-apiserver01-tah01-iad01.dapi.production.nest.com:9553 )clientId
: Identification for a control of Nest API.clientSecret
: Client secret of Nest API.code
: Authorization code to get the access token.
Ensure that the following Axis2 configurations are added and enabled in the <ESB_HOME>\repository\conf\axis2\axis2.xml
file.
Code Block |
---|
|
<messageFormatter contentType="text/html" class="org.wso2.carbon.relay.ExpandingMessageFormatter"/> |
Required message builders
Code Block |
---|
|
<messageBuilder contentType="text/html" class="org.wso2.carbon.relay.BinaryRelayBuilder"/> |
...