send JSON Request through HTTP Post

조회 수: 23 (최근 30일)
Ahmed
Ahmed 2022년 8월 20일
답변: Swastik Sarkar 2024년 8월 2일
Hi everyone, I am new to the concept of HTTP Post and JSON Requests. I am using CREO | SON a program that can help me control an application using MATLAB. It has a lot of JSON Commands that are sent to my local server through the following URL: http://localhost:9055/creoson .
An Example of one of those JSON requests is
{
"command": "connection"
"function": "connect"
}
Can someone help me send this JSON Request through to my server
  댓글 수: 1
Geoff Hayes
Geoff Hayes 2022년 8월 31일
@Ahmed - you may want to start with write JSON object to get an idea as to how to construct the command to send the JSON payload via webwrite.

댓글을 달려면 로그인하십시오.

답변 (1개)

Swastik Sarkar
Swastik Sarkar 2024년 8월 2일
Hi @Ahmed,
Understanding how to make a POST request is essential for interacting with APIs and sending data to servers. This example will help you grasp the basics, which you can then adapt to your specific use case.
Here’s an example of making a POST request to an example server on the internet:
url = 'https://jsonplaceholder.typicode.com/posts'
url = 'https://jsonplaceholder.typicode.com/posts'
jsonPayload = struct('command', 'connection', 'function', 'connect');
jsonStr = jsonencode(jsonPayload)
jsonStr = '{"command":"connection","function":"connect"}'
options = weboptions('MediaType', 'application/json');
response = webwrite(url, jsonStr, options)
response = struct with fields:
command: 'connection' function: 'connect' id: 101
You may find more about using web interfaces in MATLAB from here:
I hope this example provides a clear starting point for making web requests.

카테고리

Help CenterFile Exchange에서 JSON Format에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by