Welcome!

The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.

Getting Started






With vcpkg on Windows

PS> vcpkg install cpprestsdk cpprestsdk:x64-windows

With apt-get on Debian/Ubuntu

$ sudo apt-get install libcpprest-dev

With brew on OSX

$ brew install cpprestsdk

With NuGet on Windows for Android

PM> Install-Package cpprestsdk.android

For other platforms, install options, how to build from source, and more, take a look at our Documentation.

Once you have the library, look at our tutorial to use the http_client. It walks through how to setup a project to use the C++ Rest SDK and make a basic Http request.

To use from CMake:

cmake_minimum_required(VERSION 3.7)
project(main) find_package(cpprestsdk REQUIRED) add_executable(main main.cpp)
target_link_libraries(main PRIVATE cpprestsdk::cpprest)

What's in the SDK:

  • Features - HTTP client/server, JSON, URI, asynchronous streams, WebSockets client, oAuth
  • PPL Tasks - A powerful model for composing asynchronous operations based on C++ 11 features
  • Platforms - Windows desktop, Windows Store (UWP), Linux, OS X, Unix, iOS, and Android
  • Support for Visual Studio 2015 and 2017 with debugger visualizers

Contribute Back!

Is there a feature missing that you'd like to see, or found a bug that you have a fix for? Or do you have an idea or just interest in helping out in building the library? Let us know and we'd love to work with you. For a good starting point on where we are headed and feature ideas, take a look at our requested features and bugs.

Big or small we'd like to take your contributions back to help improve the C++ Rest SDK for everyone. If interested contact us askcasablanca at Microsoft dot com.

Having Trouble?

We'd love to get your review score, whether good or bad, but even more than that, we want to fix your problem. If you submit your issue as a Review, we won't be able to respond to your problem and ask any follow-up questions that may be necessary. The most efficient way to do that is to open a an issue in our issue tracker.

Quick Links

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

安装微软的开源 cpprestsdk  (C++ REST SDK (codename "Casablanca")),要先有项目;这里新建一个WIN32控制台项目,名为XXX,默认使用系统生成的代码;

然后打开:VS2013 -> 工具 ->库程序包管理器->程序包管理器控制台

输入 :

install-package cpprestsdk

等待安装完毕;

或者慢的话,到 https://www.nuget.org/packages?q=cpprestsdk.v120

手动把这几个包下载下来(点击进去,点download)放到缓存目录: C:\Users\Administrator\AppData\Local\NuGet\Cache

再执行 install-package cpprestsdk

等待安装

显示

。。。

已成功将“cpprestsdk 2.9.1.1”添加到 xxx (你新建的项目名),则安装成功。

把main文件所在的代码替换成下面例子的代码:

  1. // xx.cpp : 定义控制台应用程序的入口点。
  2. //
  3. #include "stdafx.h"
  4. /*
  5. int _tmain(int argc, _TCHAR* argv[])
  6. {
  7. return 0;
  8. }
  9. */
  10. #include <cpprest/http_client.h>
  11. #include <cpprest/json.h>
  12. //#include <http_client.h>
  13. #include <iostream>
  14. //#include <json.h>
  15. using namespace web;
  16. using namespace web::http;
  17. using namespace web::http::client;
  18. using namespace std;
  19. // Retrieves a JSON value from an HTTP request.
  20. pplx::task<void> RequestJSONValueAsync()
  21. {
  22. // TODO: To successfully use this example, you must perform the request
  23. // against a server that provides JSON data.
  24. // This example fails because the returned Content-Type is text/html and not application/json.
  25. //http_client client(L"http://www.fourthcoffee.com");
  26. http_client client(L"http://www.fourthcoffee.com");
  27. return client.request(methods::GET).then([](http_response response) -> pplx::task<json::value>
  28. {
  29. if (response.status_code() == status_codes::OK)
  30. {
  31. wcout<< response.extract_string().get().c_str()<<endl;
  32. return response.extract_json();
  33. }
  34. // Handle error cases, for now return empty json value...
  35. return pplx::task_from_result(json::value());
  36. })
  37. .then([](pplx::task<json::value> previousTask)
  38. {
  39. try
  40. {
  41. const json::value& v = previousTask.get();
  42. // Perform actions here to process the JSON value...
  43. }
  44. catch (const http_exception& e)
  45. {
  46. // Print error.
  47. wostringstream ss;
  48. ss << e.what() << endl;
  49. wcout << ss.str();
  50. }
  51. });
  52. /* Output:
  53. Content-Type must be application/json to extract (is: text/html)
  54. */
  55. }
  56. // Demonstrates how to iterate over a JSON object.
  57. void IterateJSONValue()
  58. {
  59. // Create a JSON object.
  60. json::value obj;
  61. obj[L"key1"] = json::value::boolean(false);
  62. obj[L"key2"] = json::value::number(44);
  63. obj[L"key3"] = json::value::number(43.6);
  64. obj[L"key4"] = json::value::string(U("str"));
  65. // Loop over each element in the object.
  66. for (auto iter = obj.as_object().cbegin(); iter != obj.as_object().cend(); ++iter)
  67. {
  68. // Make sure to get the value as const reference otherwise you will end up copying
  69. // the whole JSON value recursively which can be expensive if it is a nested object.
  70. //const json::value &str = iter->first;
  71. //const json::value &v = iter->second;
  72. const auto &str = iter->first;
  73. const auto &v = iter->second;
  74. // Perform actions here to process each string and value in the JSON object...
  75. std::wcout << L"String: " << str.c_str() << L", Value: " << v.serialize() << endl;
  76. }
  77. /* Output:
  78. String: key1, Value: false
  79. String: key2, Value: 44
  80. String: key3, Value: 43.6
  81. String: key4, Value: str
  82. */
  83. }
  84. int wmain()
  85. {
  86. // This example uses the task::wait method to ensure that async operations complete before the app exits.
  87. // In most apps, you typically don�t wait for async operations to complete.
  88. wcout << L"Calling RequestJSONValueAsync..." << endl;
  89. RequestJSONValueAsync().wait();
  90. wcout << L"Calling IterateJSONValue..." << endl;
  91. IterateJSONValue();
  92. getchar();
  93. }

编译,运行,结果:

.............

d)/*]]>*/</script></body></html>
Calling IterateJSONValue...
String: key1, Value: false
String: key2, Value: 44
String: key3, Value: 43.600000000000001
String: key4, Value: "str"

C++ REST SDK i的更多相关文章

  1. 配置android sdk 环境

    1:下载adnroid sdk安装包 官方下载地址无法打开,没有vpn,使用下面这个地址下载,地址:http://www.android-studio.org/

  2. 阿里云直播 C# SDK 如何使用

    阿里云直播SDK的坑 1.直播云没有单独的SDK,直播部分被封装在CDN的相关SDK当中. 2.针对SDK,没有相关Demo. 3.针对SDK,没有相关的文档说明. 4.针对SDK的说明,官网上的说明 ...

  3. 使用Visual Studio SDK制作GLSL词法着色插件

    使用Visual Studio SDK制作GLSL词法着色插件 我们在Visual Studio上开发OpenGL ES项目时,避免不了写Shader.这时在vs里直接编辑shader就会显得很方便. ...

  4. iOS开发之App间账号共享与SDK封装

    上篇博客<iOS逆向工程之KeyChain与Snoop-it>中已经提到了,App间的数据共享可以使用KeyChian来实现.本篇博客就实战一下呢.开门见山,本篇博客会封装一个登录用的SD ...

  5. Intel Media SDK H264 encoder GOP setting

    1 I帧,P帧,B帧,IDR帧,NAL单元 I frame:帧内编码帧,又称intra picture,I 帧通常是每个 GOP(MPEG 所使用的一种视频压缩技术)的第一个帧,经过适度地压缩,做为随 ...

  6. Android SDK 在线更新镜像服务器资源

    本文转自:http://blog.kuoruan.com/24.html.感谢原作者. 什么是Android SDK SDK:(software development kit)软件开发工具包.被软件 ...

  7. TYPESDK手游聚合SDK服务端设计思路与架构之二:服务端设计

    在前一篇文中,我们对一个聚合SDK服务端所需要实现的功能作了简单的分析.通过两个主要场景的功能流程图,我们可以看到,作为多款游戏要适配多个渠道的统一请求转发中心,TYPESDK服务端主要需要实现的功能 ...

  8. TYPESDK手游聚合SDK服务端设计思路与架构之一:应用场景分析

    TYPESDK 服务端设计思路与架构之一:应用场景分析 作为一个渠道SDK统一接入框架,TYPESDK从一开始,所面对的需求场景就是多款游戏,通过一个统一的SDK服务端,能够同时接入几十个甚至几百个各 ...

  9. Android SDK 与API版本对应关系

    Android SDK版本号 与 API Level 对应关系如下表: Code name Version API level   (no code name) 1.0 API level 1   ( ...

  10. Kotlin与Android SDK 集成(KAD 05)

    作者:Antonio Leiva 时间:Dec 19, 2016 原文链接:https://antonioleiva.com/kotlin-integrations-android-sdk/ 使用Ko ...

随机推荐

  1. DG449 High Voltage Single SPDT Analog Switch in SOT23-8

    DESCRIPTION The DG449 is a dual supply single-pole/double-throw (SPDT) switches. On resistance is 38 ...

  2. Jquery中使用定时器setInterval和setTimeout

    直接在ready中调用其他方法,会提示缺少对象的错误,解决方法如下: 方法1. 函数不在$(function(){....})内,setInterval第一个参数为"showAtuto&qu ...

  3. [Deepin 15] sudo source /etc/profile 提示找不到 source 命令(切换到 root 用户:sudo su)

    在 Deepin/Ubuntu 系统 中,因为修改了下 配置文件,然后执行 source 命令重新加载配置文件,结果: sudo source /etc/profile 提示找不到 source 命令 ...

  4. Virtualenv教程

    虚拟环境简介 VirtualEnv用于在一台机器上创建多个独立的Python虚拟运行环境,多个Python环境相互独立,互不影响,它能够: 在没有权限的情况下安装新套件 不同应用可以使用不同的套件版本 ...

  5. poj-3352-Road Construction-缩点

    做法: 把所有的边双联通分量缩成一个点. 之后建树,然后求出这个树中度为1的点. #include<stdio.h> #include<iostream> #include&l ...

  6. 教你调用数据库读取短信 记事本 通讯录文件,让ios5的短信恢复到ios4

    由于高版本的ios固件向下恢复到低版固件时无法通过itunes恢复备份,所以一些数据,比如SMS需要通过提取文件的方式单独进行备份恢复特别是ios5的短信,之前很是头痛,直接将文件恢复到指定目录修改权 ...

  7. 【伊利丹】Hadoop2.0 NN HA实验记录

    1.关于Hadoop2.2.0中HA的介绍 watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvdTAxNDUxMjEyNA==/font/5a6L5L2T/fo ...

  8. 让java从Mysql返回多个ResultSet

    首先,JDBC对于SQLSERVER来说默认是支持返回,但对于MySql来说,只默认支持存储过程返回多个ResultSet,那对于手写SQL怎么办. 其实很简单,只要一个在连接字符串中加一个参数:al ...

  9. information_schema系列六(索引,表空间,权限,约束相关表)

    information_schema系列六(索引,表空间,权限,约束相关表) 1: STATISTICS 这个表提供的是关于表的索引信息:   INFORMATION_SCHEMA Name SHOW ...

  10. diff详解

    作者: 阮一峰 日期: 2012年8月29日 diff是Unix系统的一个很重要的工具程序. 它用来比较两个文本文件的差异,是代码版本管理的基石之一.你在命令行下,输入: $ diff <变动前 ...