Hi Experts,
I have created a simple B1if scenario with a httpCall atom, but I have an issue on how to configure the oauth authorisation.
I would like to achieve is the following call:
GET https://www.domain.com/path/to/reports?param1=25&user=ALL¶m2=2 HTTP/1.1
Authorization: OAuth xyzoauthencriptedtokentoaccessthedata=
Content-Type: application/xml
I am trying the following parameters in the atom2.xml -> which is the automatically created atom for my httpCall atom.
<connect>
<destProtocol>https</destProtocol>
<destHost>www.domain.com</destHost>
<destPort>443</destPort>
<destPath>/path/to/reports</destPath>
<query/>
<proxyHost/>
<proxyPort/>
<method>GET</method>
<authentification>basic</authentification> <!-- but I'm not sure in this, under the header I added the token... -->
<user/>
<password/>
<user2query/>
<password2query/>
<trustStoreURI/>
<keyStoreURI/>
</connect>
..
..
<htta>