username:password
Authorization: Basic *****************
{
"move_base": {
"poses": [
{
"x": 0,
"y": 0,
"theta": 0
},
{
"x": 0.5,
"y": 0.5,
"theta": 0
},
{
"x": 1,
"y": 1,
"theta": 0.5
}
],
"target_pose": {
"x": 1,
"y": 1,
"theta": 0.5
},
"execution_mode": 0,
"action": 1
}
}
curl --location --request POST '/woosh/ros/CallAction' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data-raw '{
"move_base": {
"poses": [
{
"x": 0,
"y": 0,
"theta": 0
},
{
"x": 0.5,
"y": 0.5,
"theta": 0
},
{
"x": 1,
"y": 1,
"theta": 0.5
}
],
"target_pose": {
"x": 1,
"y": 1,
"theta": 0.5
},
"execution_mode": 0,
"action": 1
}
}'
{}