我是 C# 新手,但仍然尝试熟悉它的环境。
我想在获取模式下发出 REST 请求。给我 API-Access 的人向我提供了以下信息:
HTTP Methods: GET
Authentication: None
Formats: xml
Parameters: format, apikey [GET], lang [GET], q [GET]
CURL Example: curl --get --data lang="de" --data q="query" --data apikey="QWERTY123456" http://jokr.info/api/v8/search/item.xml
而且我不知道如何把它放在 C# 中。我尝试使用WebClient,但我不知道如何将我的请求与参数一起投入使用。