モバイル学習コンテンツでcurlコマンドでエラーになる #255
Closed
nagano-ryo
started this conversation in
Ideas
Replies: 2 comments 1 reply
-
windows環境の場合に起きると思われる。 |
Beta Was this translation helpful? Give feedback.
1 reply
-
対応済みなのでクローズ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
学習コンテンツFBより
https://ws-4020.github.io/mobile-app-crib-notes/react-native/learn/todo-app/networking/api-request
REST API呼び出し時、記載されているcurlコマンドを実行するとエラーになる。(コマンドプロンプト/PowerShell)
curl http://localhost:9080/api/todos -X POST -d '{"text": "アプリ外からの登録"}' -H "Content-Type: application/json"
以下のように修正したら正常にコマンド実行できた。
curl http://localhost:9080/api/todos -X POST -d "{\"text\": \"アプリ外からの登録\"}" -H "Content-Type: application/json"
Beta Was this translation helpful? Give feedback.
All reactions