How to introduce a body (json text) in webread function?

2 ビュー (過去 30 日間)
Body_sea
Body_sea 2023 年 10 月 9 日
回答済み: Jeremy Hughes 2024 年 1 月 4 日
Dear,
I am looking for reading data from a private server, for this i have a json text as :
text_json = [''...
'{'...
' "fromDate": "2023-08-01",'...
' "toDate": "2023-08-02" '...
'}'...
''];
For information this information can be used in Postman application for manual data extraction.
options = weboptions('RequestMethod', 'POST', 'HeaderFields', headers);
And i need to applique to the webread function as :
data = webread(URL,text_json,options);
I am not sure about the good way for solve this issues.
Best Regards.

回答 (1 件)

Jeremy Hughes
Jeremy Hughes 2024 年 1 月 4 日
You can use WEBWRITE for POST requests: https://www.mathworks.com/help/matlab/ref/webwrite.html
opts = weboptions("ContentType","application/json")
webwrite(url,data,opts) % data is the content of the BODY, be sure to match the content type

カテゴリ

Help Center および File ExchangeJSON Format についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by