How can I form this http request correctly in matlab
Afficher commentaires plus anciens
This request, expressed in XML, works fine in a rest client.
I should clarify, that I work inside a corporate firewall. The request goes outside that.
<RestClientRequest>
<option name="httpMethod" value="POST" />
<option name="urlBase" value="https://aWebsite.net" />
<option name="urlPath" value="/atoken" />
<option name="headers">
<list>
<KeyValuePair>
<option name="key" value="Content-Type" />
<option name="value" value="application/x-www-form-urlencoded" />
</KeyValuePair>
<KeyValuePair>
<option name="key" value="Cache-Control" />
<option name="value" value="no-cache" />
</KeyValuePair>
</list>
</option>
<option name="parameters">
<list>
<KeyValuePair>
<option name="key" value="username" />
<option name="value" value="me" />
</KeyValuePair>
<KeyValuePair>
<option name="key" value="password" />
<option name="value" value="verySecret" />
</KeyValuePair>
<KeyValuePair>
<option name="key" value="grant_type" />
<option name="value" value="password" />
</KeyValuePair>
</list>
</option>
<option name="parametersEnabled" value="true" />
<option name="haveTextToSend" value="false" />
<option name="haveFileToSend" value="false" />
<option name="isFileUpload" value="false" />
<option name="textToSend" value="" />
<option name="filesToSend" value="" />
</RestClientRequest>
For the life of me, I cannot express it in matlab, I only ever get back 'Bad Request'. Can anyone help?
api = 'https://aWebsite.net/aToken';
body.username = 'me';
body.password = 'verySecret';
body.grant_type = 'password';
options = weboptions('MediaType', 'application/json' ,'RequestMethod','post','ArrayFormat','json');
respon = webwrite(api, body, options);
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Call Web Services from MATLAB Using HTTP dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!