API的文档显示了如何在Python中完成此任务的源代码:
#!/usr/bin/python
import pycurl
c = pycurl.Curl()
values = [
("key", "YOUR_API_KEY"),
("image", (c.FORM_FILE, "file.png"))]
# OR: ("image", "http://example.com/example.jpg"))]
c.setopt(c.URL, "http://imgur.com/api/upload.xml")
c.setopt(c.HTTPPOST, values)
c.perform()
c.close()
我想了解如何在C#中执行此操作。例如,我对C#中的这些“价值”感到迷茫,我怎么能宣称它们呢?
我根本不熟悉cURL,所以这可能会阻止我翻译一下。
帮助我Obi-wan。你是我唯一的希望。 /点击
答案 0 :(得分:1)
您只需要执行HTTP POST,例如this code {“参数”字符串key=YOUR_API_KEY&image=http://example.com/example.jpg
等。