Skip to content

Commit 8e08939

Browse files
rktalusanimheap
authored andcommitted
change single quote to double quote
body of the message is enclosed in single quotes, so don't use single quote inside the body
1 parent 6af199a commit 8e08939

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

messages/send-mms-basic-auth.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ curl -X POST https://api.nexmo.com/v0.1/messages \
1010
-d '{
1111
"from":{
1212
"type": "mms",
13-
"number": '$US_SHORT_CODE'
13+
"number": "$US_SHORT_CODE"
1414
},
1515
"to":{
1616
"type": "mms",
17-
"number": '$TO_NUMBER'
17+
"number": "$TO_NUMBER"
1818
},
1919
"message":{
2020
"content":{
2121
"type": "image",
2222
"image": {
23-
"url": '$IMG_URL'
23+
"url": "$IMG_URL"
2424
}
2525
}
2626
}

0 commit comments

Comments
 (0)