## 1.エラー発生
APIテストでPostmanを利用して画像をアップロードしようとしてエラー発生。
→ワーキングディレクトリの中にあるファイルなら読み込むことができますよとのこと。
## 2.対処方法(参考:Setting Up Postman)
公式より
You cannot change the working directory in Postman for Web. When you upload a file, Postman for Web creates a new folder with a random name in the ~/Postman/files directory. Postman stores the uploaded file in the new folder so you can use it when sending requests. To automatically sync files you upload to Postman for Web with your local working directory, make sure you are using the Postman Desktop Agent.
→ Postman Desktop Agentをinstallすれば自分のPCがworking directoryになる。
- やったこと:localの環境にPostman Desktop Agentをinstallしてworking directoryを自分のPCに設定する。
## 3.発生原因
- Web上で登録しただけでは、working directoryはdefaultで「~/Postman/files」のままだった。
- working directoryの変更をしなければいけない →2対処方法を行う。
- Postman Desktop Agentのworking directoryを確認: 「/Users/ユーザー名/Postman/files」となっていればok
## 4.まとめ
- 利用しているサービスが原因なのか自分の書いたコードが原因なのかを考える必要があった。
- コードに原因があると思い込んでいると、解決する時間がかなり長くなってしまう。
- working directoryてなんだ?を後回しにしていたため、サービスを利用する時はわからないことは調べるよにする。