1

C#でimageshack.usにアップロードする方法を知っている人はいますか? ここにある他の 2 つのスレッドは役に立ちませんでした:/ これが私のコードです。「PostParamCollection」は、HTTP Post を送信するためのライブラリです。助けてくれてありがとう!

次のエラー メッセージが表示されます。

String imageshackurl = "http://www.imageshack.us/upload_api.php?";

                    PostParamCollection postParamCollection = new PostParamCollection();
                    postParamCollection.Add(new PostParam("key", imageshack_key));
                    postParamCollection.Add(new PostParam("Content-Disposition", "form-data"));
                    postParamCollection.Add(new PostParam("filename", "a.jpg"));
                    postParamCollection.Add(new PostParam("Content-Type", "image/png"));

                    HttpPost httpPost = new HttpPost(imageshackurl);
                    httpPost.doPost(postParamCollection);
                    String link = httpPost.responseStream;

                    WriteLog(link);
4

1 に答える 1