代码之家  ›  专栏  ›  技术社区  ›  Juan Sebastian Fernandez Ramir

C#mbed API的curl命令

  •  -4
  • Juan Sebastian Fernandez Ramir  · 技术社区  · 7 年前

    有人能帮我把这个curl命令翻译成C#https GET请求吗?

    curl -v -H 'Authorization: Bearer <your_access_key>' https://api.connector.mbed.com/endpoints/
    
    1 回复  |  直到 7 年前
        1
  •  0
  •   Jan Jongboom    7 年前

    试试这个:

    WebClient client = new WebClient();
    client.Headers.Add("Authorization", "Bearer <your_access_key>");
    string response = client.DownloadString("https://api.connector.mbed.com/endpoints/");