├── README.md ├── okcoin-cpp-sdk-api ├── CMakeLists.txt ├── README.md ├── libs │ ├── build_dependencies.sh │ └── cpprestsdk │ │ ├── Build_android │ │ ├── boost-for-android-x86.patch │ │ ├── boost-for-android.patch │ │ ├── configure.sh │ │ └── openssl │ │ │ └── Makefile │ │ ├── Build_iOS │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── configure.sh │ │ ├── fix_boost_building_script.patch │ │ └── fix_ios_cmake_compiler.patch │ │ ├── CONTRIBUTORS.txt │ │ ├── README.md │ │ ├── Release │ │ ├── CMakeLists.txt │ │ ├── cmake-build-debug │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.10.3 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ └── a.out │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ └── a.out │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ ├── CMakeOutput.log │ │ │ │ ├── CMakeRuleHashes.txt │ │ │ │ ├── Makefile.cmake │ │ │ │ ├── Makefile2 │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── clion-environment.txt │ │ │ │ ├── clion-log.txt │ │ │ │ ├── cmake.check_cache │ │ │ │ ├── feature_tests.bin │ │ │ │ ├── feature_tests.c │ │ │ │ ├── feature_tests.cxx │ │ │ │ └── progress.marks │ │ │ ├── CTestTestfile.cmake │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ ├── cpprest.cbp │ │ │ ├── cpprestsdk.cbp │ │ │ ├── samples │ │ │ │ ├── BingRequest │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── BingRequest.dir │ │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ │ └── progress.make │ │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ │ └── progress.marks │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── BlackJack │ │ │ │ │ ├── BlackJack_Client │ │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ │ │ ├── blackjackclient.dir │ │ │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ │ │ └── progress.make │ │ │ │ │ │ │ └── progress.marks │ │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── cmake_install.cmake │ │ │ │ │ ├── BlackJack_Server │ │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ │ │ ├── blackjackserver.dir │ │ │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ │ │ └── progress.make │ │ │ │ │ │ │ └── progress.marks │ │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── cmake_install.cmake │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ │ └── progress.marks │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── progress.marks │ │ │ │ │ └── samples.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ └── progress.make │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ ├── Oauth1Client │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ │ ├── oauth1client.dir │ │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ │ └── progress.make │ │ │ │ │ │ └── progress.marks │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── Oauth2Client │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ │ ├── oauth2client.dir │ │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ │ └── progress.make │ │ │ │ │ │ └── progress.marks │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── SearchFile │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ │ ├── SearchFile.dir │ │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ │ └── progress.make │ │ │ │ │ │ └── progress.marks │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ └── cmake_install.cmake │ │ │ ├── src │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── Export │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── cpprestsdk │ │ │ │ │ │ │ ├── cpprestsdk-targets-debug.cmake │ │ │ │ │ │ │ └── cpprestsdk-targets.cmake │ │ │ │ │ ├── cpprest.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ └── progress.make │ │ │ │ │ └── progress.marks │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── cpprestsdk-config.cmake │ │ │ └── tests │ │ │ │ ├── CMakeFiles │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ └── progress.marks │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── common │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ └── progress.marks │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ ├── TestRunner │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ │ ├── progress.marks │ │ │ │ │ │ └── test_runner.dir │ │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ │ └── progress.make │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── UnitTestpp │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ │ ├── progress.marks │ │ │ │ │ │ └── unittestpp.dir │ │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ │ └── progress.make │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── utilities │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── common_utilities.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ └── progress.make │ │ │ │ │ └── progress.marks │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ └── functional │ │ │ │ ├── CMakeFiles │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ └── progress.marks │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── http │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ └── progress.marks │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ ├── client │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ │ ├── httpclient_test.dir │ │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ │ └── progress.make │ │ │ │ │ │ └── progress.marks │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── listener │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ │ ├── httplistener_test.dir │ │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ │ └── progress.make │ │ │ │ │ │ └── progress.marks │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ └── utilities │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── httptest_utilities.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ └── progress.make │ │ │ │ │ └── progress.marks │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── json │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── json_test.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ └── progress.make │ │ │ │ │ └── progress.marks │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── pplx │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ └── progress.marks │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── pplx_test │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── pplx_test.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ └── progress.make │ │ │ │ │ └── progress.marks │ │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ │ ├── Makefile │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── streams │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── progress.marks │ │ │ │ │ └── streams_test.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ └── progress.make │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── uri │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── progress.marks │ │ │ │ │ └── uri_test.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ └── progress.make │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── utils │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── progress.marks │ │ │ │ │ └── utils_test.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ └── progress.make │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ └── cmake_install.cmake │ │ │ │ └── websockets │ │ │ │ ├── CMakeFiles │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ ├── progress.marks │ │ │ │ ├── websocketsclient_test.dir │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ └── websockettest_utilities.dir │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ ├── client │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── progress.marks │ │ │ │ │ └── websocketclient_test.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ └── progress.make │ │ │ │ ├── CTestTestfile.cmake │ │ │ │ ├── Makefile │ │ │ │ └── cmake_install.cmake │ │ │ │ └── cmake_install.cmake │ │ ├── dirs.proj │ │ ├── include │ │ │ ├── cpprest │ │ │ │ ├── astreambuf.h │ │ │ │ ├── asyncrt_utils.h │ │ │ │ ├── base_uri.h │ │ │ │ ├── containerstream.h │ │ │ │ ├── details │ │ │ │ │ ├── SafeInt3.hpp │ │ │ │ │ ├── basic_types.h │ │ │ │ │ ├── cpprest_compat.h │ │ │ │ │ ├── fileio.h │ │ │ │ │ ├── http_constants.dat │ │ │ │ │ ├── http_helpers.h │ │ │ │ │ ├── http_server.h │ │ │ │ │ ├── http_server_api.h │ │ │ │ │ ├── http_server_asio.h │ │ │ │ │ ├── http_server_httpsys.h │ │ │ │ │ ├── nosal.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── uri_parser.h │ │ │ │ │ ├── web_utilities.h │ │ │ │ │ └── x509_cert_utilities.h │ │ │ │ ├── filestream.h │ │ │ │ ├── http_client.h │ │ │ │ ├── http_headers.h │ │ │ │ ├── http_listener.h │ │ │ │ ├── http_msg.h │ │ │ │ ├── interopstream.h │ │ │ │ ├── json.h │ │ │ │ ├── oauth1.h │ │ │ │ ├── oauth2.h │ │ │ │ ├── producerconsumerstream.h │ │ │ │ ├── rawptrstream.h │ │ │ │ ├── streams.h │ │ │ │ ├── uri.h │ │ │ │ ├── uri_builder.h │ │ │ │ ├── version.h │ │ │ │ ├── ws_client.h │ │ │ │ └── ws_msg.h │ │ │ └── pplx │ │ │ │ ├── pplx.h │ │ │ │ ├── pplxcancellation_token.h │ │ │ │ ├── pplxconv.h │ │ │ │ ├── pplxinterface.h │ │ │ │ ├── pplxlinux.h │ │ │ │ ├── pplxtasks.h │ │ │ │ ├── pplxwin.h │ │ │ │ └── threadpool.h │ │ ├── libs │ │ │ └── websocketpp │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING │ │ │ │ ├── Doxyfile │ │ │ │ ├── SConstruct │ │ │ │ ├── changelog.md │ │ │ │ ├── docs │ │ │ │ ├── simple_broadcast_server.cpp │ │ │ │ └── simple_count_server_thread.cpp │ │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── associative_storage │ │ │ │ │ └── associative_storage.cpp │ │ │ │ ├── broadcast_server │ │ │ │ │ ├── SConscript │ │ │ │ │ └── broadcast_server.cpp │ │ │ │ ├── debug_client │ │ │ │ │ ├── SConscript │ │ │ │ │ └── debug_client.cpp │ │ │ │ ├── debug_server │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── SConscript │ │ │ │ │ └── debug_server.cpp │ │ │ │ ├── dev │ │ │ │ │ ├── SConscript │ │ │ │ │ └── main.cpp │ │ │ │ ├── echo_server │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── echo_handler.hpp │ │ │ │ │ └── echo_server.cpp │ │ │ │ ├── echo_server_both │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── echo_server_both.cpp │ │ │ │ │ └── server.pem │ │ │ │ ├── echo_server_tls │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── echo_server_tls.cpp │ │ │ │ │ └── server.pem │ │ │ │ ├── enriched_storage │ │ │ │ │ └── enriched_storage.cpp │ │ │ │ ├── handler_switch │ │ │ │ │ └── handler_switch.cpp │ │ │ │ ├── iostream_server │ │ │ │ │ ├── SConscript │ │ │ │ │ └── iostream_server.cpp │ │ │ │ ├── print_server │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── SConscript │ │ │ │ │ └── print_server.cpp │ │ │ │ ├── simple_broadcast_server │ │ │ │ │ └── simple_broadcast_server.cpp │ │ │ │ ├── sip_client │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── SConscript │ │ │ │ │ └── sip_client.cpp │ │ │ │ ├── subprotocol_server │ │ │ │ │ ├── SConscript │ │ │ │ │ └── subprotocol_server.cpp │ │ │ │ ├── telemetry_client │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── SConscript │ │ │ │ │ └── telemetry_client.cpp │ │ │ │ ├── telemetry_server │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── index.html │ │ │ │ │ └── telemetry_server.cpp │ │ │ │ ├── testee_client │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── SConscript │ │ │ │ │ └── testee_client.cpp │ │ │ │ ├── testee_server │ │ │ │ │ ├── SConscript │ │ │ │ │ └── testee_server.cpp │ │ │ │ └── utility_client │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── SConscript │ │ │ │ │ └── utility_client.cpp │ │ │ │ ├── readme.md │ │ │ │ ├── roadmap.md │ │ │ │ ├── test │ │ │ │ ├── connection │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── connection.cpp │ │ │ │ │ ├── connection_tu2.cpp │ │ │ │ │ └── connection_tu2.hpp │ │ │ │ ├── endpoint │ │ │ │ │ ├── SConscript │ │ │ │ │ └── endpoint.cpp │ │ │ │ ├── extension │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── extension.cpp │ │ │ │ │ └── permessage_deflate.cpp │ │ │ │ ├── http │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── parser.cpp │ │ │ │ │ └── parser_perf.cpp │ │ │ │ ├── logger │ │ │ │ │ ├── SConscript │ │ │ │ │ └── basic.cpp │ │ │ │ ├── message_buffer │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── alloc.cpp │ │ │ │ │ ├── message.cpp │ │ │ │ │ └── pool.cpp │ │ │ │ ├── processors │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── extension_permessage_compress.cpp │ │ │ │ │ ├── hybi00.cpp │ │ │ │ │ ├── hybi07.cpp │ │ │ │ │ ├── hybi08.cpp │ │ │ │ │ ├── hybi13.cpp │ │ │ │ │ └── processor.cpp │ │ │ │ ├── random │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── none.cpp │ │ │ │ │ └── random_device.cpp │ │ │ │ ├── roles │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── client.cpp │ │ │ │ │ └── server.cpp │ │ │ │ ├── transport │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── asio │ │ │ │ │ │ ├── SConscript │ │ │ │ │ │ ├── base.cpp │ │ │ │ │ │ └── timers.cpp │ │ │ │ │ ├── hybi_util.cpp │ │ │ │ │ ├── integration.cpp │ │ │ │ │ └── iostream │ │ │ │ │ │ ├── SConscript │ │ │ │ │ │ ├── base.cpp │ │ │ │ │ │ ├── connection.cpp │ │ │ │ │ │ └── endpoint.cpp │ │ │ │ └── utility │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── close.cpp │ │ │ │ │ ├── error.cpp │ │ │ │ │ ├── frame.cpp │ │ │ │ │ ├── sha1.cpp │ │ │ │ │ ├── uri.cpp │ │ │ │ │ └── utilities.cpp │ │ │ │ ├── tutorials │ │ │ │ ├── broadcast_tutorial │ │ │ │ │ └── broadcast_tutorial.md │ │ │ │ ├── chat_tutorial │ │ │ │ │ └── chat_tutorial.md │ │ │ │ └── utility_client │ │ │ │ │ ├── step1.cpp │ │ │ │ │ ├── step2.cpp │ │ │ │ │ ├── step3.cpp │ │ │ │ │ ├── step4.cpp │ │ │ │ │ ├── step5.cpp │ │ │ │ │ ├── step6.cpp │ │ │ │ │ └── utility_client.md │ │ │ │ ├── websocketpp-config.cmake.in │ │ │ │ ├── websocketpp-configVersion.cmake.in │ │ │ │ └── websocketpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── base64 │ │ │ │ └── base64.hpp │ │ │ │ ├── client.hpp │ │ │ │ ├── close.hpp │ │ │ │ ├── common │ │ │ │ ├── chrono.hpp │ │ │ │ ├── connection_hdl.hpp │ │ │ │ ├── cpp11.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── md5.hpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── network.hpp │ │ │ │ ├── platforms.hpp │ │ │ │ ├── random.hpp │ │ │ │ ├── regex.hpp │ │ │ │ ├── stdint.hpp │ │ │ │ ├── system_error.hpp │ │ │ │ ├── thread.hpp │ │ │ │ └── time.hpp │ │ │ │ ├── concurrency │ │ │ │ ├── basic.hpp │ │ │ │ └── none.hpp │ │ │ │ ├── config │ │ │ │ ├── asio.hpp │ │ │ │ ├── asio_client.hpp │ │ │ │ ├── asio_no_tls.hpp │ │ │ │ ├── asio_no_tls_client.hpp │ │ │ │ ├── boost_config.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── core_client.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── debug_asio.hpp │ │ │ │ ├── debug_asio_no_tls.hpp │ │ │ │ ├── minimal_client.hpp │ │ │ │ └── minimal_server.hpp │ │ │ │ ├── connection.hpp │ │ │ │ ├── connection_base.hpp │ │ │ │ ├── endpoint.hpp │ │ │ │ ├── endpoint_base.hpp │ │ │ │ ├── error.hpp │ │ │ │ ├── error_container.hpp │ │ │ │ ├── extensions │ │ │ │ ├── extension.hpp │ │ │ │ └── permessage_deflate │ │ │ │ │ ├── disabled.hpp │ │ │ │ │ └── enabled.hpp │ │ │ │ ├── frame.hpp │ │ │ │ ├── http │ │ │ │ ├── constants.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── parser.hpp │ │ │ │ │ ├── request.hpp │ │ │ │ │ └── response.hpp │ │ │ │ ├── parser.hpp │ │ │ │ ├── request.hpp │ │ │ │ └── response.hpp │ │ │ │ ├── impl │ │ │ │ ├── connection_impl.hpp │ │ │ │ ├── endpoint_impl.hpp │ │ │ │ └── utilities_impl.hpp │ │ │ │ ├── logger │ │ │ │ ├── basic.hpp │ │ │ │ ├── levels.hpp │ │ │ │ ├── stub.hpp │ │ │ │ └── syslog.hpp │ │ │ │ ├── message_buffer │ │ │ │ ├── alloc.hpp │ │ │ │ ├── message.hpp │ │ │ │ └── pool.hpp │ │ │ │ ├── processors │ │ │ │ ├── base.hpp │ │ │ │ ├── hybi00.hpp │ │ │ │ ├── hybi07.hpp │ │ │ │ ├── hybi08.hpp │ │ │ │ ├── hybi13.hpp │ │ │ │ └── processor.hpp │ │ │ │ ├── random │ │ │ │ ├── none.hpp │ │ │ │ └── random_device.hpp │ │ │ │ ├── roles │ │ │ │ ├── client_endpoint.hpp │ │ │ │ └── server_endpoint.hpp │ │ │ │ ├── server.hpp │ │ │ │ ├── sha1 │ │ │ │ └── sha1.hpp │ │ │ │ ├── transport │ │ │ │ ├── asio │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── connection.hpp │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ └── security │ │ │ │ │ │ ├── base.hpp │ │ │ │ │ │ ├── none.hpp │ │ │ │ │ │ └── tls.hpp │ │ │ │ ├── base │ │ │ │ │ ├── connection.hpp │ │ │ │ │ └── endpoint.hpp │ │ │ │ ├── debug │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── connection.hpp │ │ │ │ │ └── endpoint.hpp │ │ │ │ ├── iostream │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── connection.hpp │ │ │ │ │ └── endpoint.hpp │ │ │ │ └── stub │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── connection.hpp │ │ │ │ │ └── endpoint.hpp │ │ │ │ ├── uri.hpp │ │ │ │ ├── utf8_validator.hpp │ │ │ │ ├── utilities.hpp │ │ │ │ └── version.hpp │ │ ├── public_apis_doxyfile │ │ ├── samples │ │ │ ├── BingRequest │ │ │ │ ├── BingRequest120.xp │ │ │ │ │ ├── BingRequest120.xp.vcxproj │ │ │ │ │ └── BingRequest120.xp.vcxproj.filters │ │ │ │ ├── BingRequest120 │ │ │ │ │ ├── BingRequest120.vcxproj │ │ │ │ │ └── BingRequest120.vcxproj.filters │ │ │ │ ├── BingRequest140.xp │ │ │ │ │ ├── BingRequest140.xp.vcxproj │ │ │ │ │ └── BingRequest140.xp.vcxproj.filters │ │ │ │ ├── BingRequest140 │ │ │ │ │ ├── BingRequest140.vcxproj │ │ │ │ │ └── BingRequest140.vcxproj.filters │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bingrequest.cpp │ │ │ │ └── dirs.proj │ │ │ ├── BlackJack │ │ │ │ ├── BlackJack_Client │ │ │ │ │ ├── BlackJackClient.cpp │ │ │ │ │ ├── BlackJack_Client120 │ │ │ │ │ │ ├── BlackJack_Client120.vcxproj │ │ │ │ │ │ └── BlackJack_Client120.vcxproj.filters │ │ │ │ │ ├── BlackJack_Client140 │ │ │ │ │ │ ├── BlackJack_Client140.vcxproj │ │ │ │ │ │ └── BlackJack_Client140.vcxproj.filters │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── dirs.proj │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ ├── stdafx.h │ │ │ │ │ └── targetver.h │ │ │ │ ├── BlackJack_Server │ │ │ │ │ ├── BlackJack_Server.cpp │ │ │ │ │ ├── BlackJack_Server120 │ │ │ │ │ │ ├── BlackJack_Server120.vcxproj │ │ │ │ │ │ └── BlackJack_Server120.vcxproj.filters │ │ │ │ │ ├── BlackJack_Server140 │ │ │ │ │ │ ├── BlackJack_Server140.vcxproj │ │ │ │ │ │ └── BlackJack_Server140.vcxproj.filters │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Dealer.cpp │ │ │ │ │ ├── Table.cpp │ │ │ │ │ ├── Table.h │ │ │ │ │ ├── dirs.proj │ │ │ │ │ ├── messagetypes.h │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ └── stdafx.h │ │ │ │ ├── BlackJack_UIClient │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cpp │ │ │ │ │ ├── App.xaml.h │ │ │ │ │ ├── Assets │ │ │ │ │ │ ├── Logo.png │ │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ │ └── StoreLogo.png │ │ │ │ │ ├── BlackJack_UIClient120.vcxproj │ │ │ │ │ ├── BlackJack_UIClient140.vcxproj │ │ │ │ │ ├── BlackJack_UIClient_TemporaryKey.pfx │ │ │ │ │ ├── CardShape.xaml │ │ │ │ │ ├── CardShape.xaml.cpp │ │ │ │ │ ├── CardShape.xaml.h │ │ │ │ │ ├── Cards.PNG │ │ │ │ │ ├── Common │ │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ │ ├── Package120.appxmanifest │ │ │ │ │ ├── Package140.appxmanifest │ │ │ │ │ ├── Player.xaml │ │ │ │ │ ├── Player.xaml.cpp │ │ │ │ │ ├── Player.xaml.h │ │ │ │ │ ├── PlayingTable.xaml │ │ │ │ │ ├── PlayingTable.xaml.cpp │ │ │ │ │ ├── PlayingTable.xaml.h │ │ │ │ │ ├── messagetypes.h │ │ │ │ │ ├── pch.cpp │ │ │ │ │ └── pch.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── dirs.proj │ │ │ ├── CMakeLists.txt │ │ │ ├── CasaLens │ │ │ │ ├── AppCode.html │ │ │ │ ├── CasaLens120 │ │ │ │ │ ├── CasaLens120.vcxproj │ │ │ │ │ └── CasaLens120.vcxproj.filters │ │ │ │ ├── CasaLens140 │ │ │ │ │ └── CasaLens140.vcxproj │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── casalens.cpp │ │ │ │ ├── casalens.h │ │ │ │ ├── css │ │ │ │ │ └── default.css │ │ │ │ ├── datafetcher.cpp │ │ │ │ ├── dirs.proj │ │ │ │ ├── image │ │ │ │ │ ├── bing-logo.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ └── wall.jpg │ │ │ │ ├── js │ │ │ │ │ └── default.js │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── FacebookDemo │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Common │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ ├── Facebook.cpp │ │ │ │ ├── Facebook.h │ │ │ │ ├── FacebookDemo120.vcxproj │ │ │ │ ├── FacebookDemo140.vcxproj │ │ │ │ ├── FacebookDemo_TemporaryKey.pfx │ │ │ │ ├── MainPage.xaml │ │ │ │ ├── MainPage.xaml.cpp │ │ │ │ ├── MainPage.xaml.h │ │ │ │ ├── Package110.appxmanifest │ │ │ │ ├── Package120.appxmanifest │ │ │ │ ├── Package140.appxmanifest │ │ │ │ ├── dirs.proj │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ │ ├── OAuth2Live │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Common │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ ├── MainPage.xaml │ │ │ │ ├── MainPage.xaml.cpp │ │ │ │ ├── MainPage.xaml.h │ │ │ │ ├── OAuth2Live120.vcxproj │ │ │ │ ├── OAuth2Live140.vcxproj │ │ │ │ ├── OAuth2Live_TemporaryKey.pfx │ │ │ │ ├── Package110.appxmanifest │ │ │ │ ├── Package120.appxmanifest │ │ │ │ ├── Package140.appxmanifest │ │ │ │ ├── dirs.proj │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ │ ├── Oauth1Client │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Oauth1Client.cpp │ │ │ │ ├── Oauth1Client120 │ │ │ │ │ ├── Oauth1Client120.vcxproj │ │ │ │ │ └── Oauth1Client120.vcxproj.filters │ │ │ │ ├── Oauth1Client140 │ │ │ │ │ ├── Oauth1Client140.vcxproj │ │ │ │ │ └── Oauth1Client140.vcxproj.filters │ │ │ │ ├── dirs.proj │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── Oauth2Client │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Oauth2Client.cpp │ │ │ │ ├── Oauth2Client120 │ │ │ │ │ ├── Oauth2Client120.sln │ │ │ │ │ ├── Oauth2Client120.vcxproj │ │ │ │ │ └── Oauth2Client120.vcxproj.filters │ │ │ │ ├── Oauth2Client140 │ │ │ │ │ ├── Oauth2Client140.vcxproj │ │ │ │ │ └── Oauth2Client140.vcxproj.filters │ │ │ │ ├── dirs.proj │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── SearchFile │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SearchFile120 │ │ │ │ │ ├── SearchFile120.vcxproj │ │ │ │ │ └── SearchFile120.vcxproj.filters │ │ │ │ ├── SearchFile140 │ │ │ │ │ ├── SearchFile140.vcxproj │ │ │ │ │ └── SearchFile140.vcxproj.filters │ │ │ │ ├── dirs.proj │ │ │ │ └── searchfile.cpp │ │ │ ├── WindowsLiveAuth │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cpp │ │ │ │ ├── App.xaml.h │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Common │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ ├── MainPage.xaml │ │ │ │ ├── MainPage.xaml.cpp │ │ │ │ ├── MainPage.xaml.h │ │ │ │ ├── Package120.appxmanifest │ │ │ │ ├── Package140.appxmanifest │ │ │ │ ├── WindowsLiveAuth120.vcxproj │ │ │ │ ├── WindowsLiveAuth140.vcxproj │ │ │ │ ├── WindowsLiveAuth_TemporaryKey.pfx │ │ │ │ ├── dirs.proj │ │ │ │ ├── live_connect.h │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ │ └── dirs.proj │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── dirs.proj │ │ │ ├── http │ │ │ │ ├── client │ │ │ │ │ ├── http_client.cpp │ │ │ │ │ ├── http_client_asio.cpp │ │ │ │ │ ├── http_client_impl.h │ │ │ │ │ ├── http_client_msg.cpp │ │ │ │ │ ├── http_client_winhttp.cpp │ │ │ │ │ ├── http_client_winrt.cpp │ │ │ │ │ └── x509_cert_utilities.cpp │ │ │ │ ├── common │ │ │ │ │ ├── http_helpers.cpp │ │ │ │ │ └── http_msg.cpp │ │ │ │ ├── listener │ │ │ │ │ ├── http_listener.cpp │ │ │ │ │ ├── http_listener_msg.cpp │ │ │ │ │ ├── http_server_api.cpp │ │ │ │ │ ├── http_server_asio.cpp │ │ │ │ │ └── http_server_httpsys.cpp │ │ │ │ └── oauth │ │ │ │ │ ├── oauth1.cpp │ │ │ │ │ └── oauth2.cpp │ │ │ ├── json │ │ │ │ ├── json.cpp │ │ │ │ ├── json_parsing.cpp │ │ │ │ └── json_serialization.cpp │ │ │ ├── pch │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── pplx │ │ │ │ ├── pplx.cpp │ │ │ │ ├── pplxapple.cpp │ │ │ │ ├── pplxlinux.cpp │ │ │ │ ├── pplxwin.cpp │ │ │ │ └── threadpool.cpp │ │ │ ├── streams │ │ │ │ ├── fileio_posix.cpp │ │ │ │ ├── fileio_win32.cpp │ │ │ │ └── fileio_winrt.cpp │ │ │ ├── uri │ │ │ │ ├── uri.cpp │ │ │ │ ├── uri_builder.cpp │ │ │ │ └── uri_parser.cpp │ │ │ ├── utilities │ │ │ │ ├── Resource.rc │ │ │ │ ├── asyncrt_utils.cpp │ │ │ │ ├── base64.cpp │ │ │ │ └── web_utilities.cpp │ │ │ └── websockets │ │ │ │ └── client │ │ │ │ ├── ws_client.cpp │ │ │ │ ├── ws_client_winrt.cpp │ │ │ │ ├── ws_client_wspp.cpp │ │ │ │ └── ws_msg.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── TestRunner │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dirs.proj │ │ │ │ ├── ios │ │ │ │ │ ├── ios_runner.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ │ └── ios_runner.xcscheme │ │ │ │ │ └── ios_runnerTests │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── ios_runnerTests.mm │ │ │ │ ├── test_module_loader.cpp │ │ │ │ ├── test_module_loader.h │ │ │ │ ├── test_runner.cpp │ │ │ │ ├── vs12.winrt │ │ │ │ │ ├── TestRunner120.winrt.vcxproj │ │ │ │ │ └── TestRunner120.winrt.vcxproj.filters │ │ │ │ ├── vs12 │ │ │ │ │ ├── TestRunner120.vcxproj │ │ │ │ │ └── TestRunner120.vcxproj.filters │ │ │ │ ├── vs14.android │ │ │ │ │ ├── TestRunner.android.NativeActivity │ │ │ │ │ │ ├── TestRunner.android.NativeActivity.vcxproj │ │ │ │ │ │ ├── TestRunner.android.NativeActivity.vcxproj.filters │ │ │ │ │ │ ├── android_native_app_glue.c │ │ │ │ │ │ ├── android_native_app_glue.h │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── packages.config │ │ │ │ │ │ └── pch.h │ │ │ │ │ └── TestRunner.android.Packaging │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── TestRunner.android.Packaging.androidproj │ │ │ │ │ │ ├── build.xml │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── strings.xml │ │ │ │ ├── vs14.uwp │ │ │ │ │ ├── TestRunner140.uwp.vcxproj │ │ │ │ │ └── TestRunner140.uwp.vcxproj.filters │ │ │ │ └── vs14 │ │ │ │ │ ├── TestRunner140.vcxproj │ │ │ │ │ └── TestRunner140.vcxproj.filters │ │ │ ├── UnitTestpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING │ │ │ │ ├── ThirdPartyNotices.txt │ │ │ │ ├── config.h │ │ │ │ ├── dirs.proj │ │ │ │ ├── src │ │ │ │ │ ├── AssertException.cpp │ │ │ │ │ ├── AssertException.h │ │ │ │ │ ├── CheckMacros.h │ │ │ │ │ ├── Checks.h │ │ │ │ │ ├── CompositeTestReporter.cpp │ │ │ │ │ ├── CompositeTestReporter.h │ │ │ │ │ ├── CurrentTest.cpp │ │ │ │ │ ├── CurrentTest.h │ │ │ │ │ ├── DeferredTestReporter.cpp │ │ │ │ │ ├── DeferredTestReporter.h │ │ │ │ │ ├── DeferredTestResult.cpp │ │ │ │ │ ├── DeferredTestResult.h │ │ │ │ │ ├── ExceptionMacros.h │ │ │ │ │ ├── ExecuteTest.h │ │ │ │ │ ├── GlobalSettings.cpp │ │ │ │ │ ├── GlobalSettings.h │ │ │ │ │ ├── HelperMacros.h │ │ │ │ │ ├── MemoryOutStream.cpp │ │ │ │ │ ├── MemoryOutStream.h │ │ │ │ │ ├── Posix │ │ │ │ │ │ ├── SignalTranslator.cpp │ │ │ │ │ │ ├── SignalTranslator.h │ │ │ │ │ │ ├── TimeHelpers.cpp │ │ │ │ │ │ └── TimeHelpers.h │ │ │ │ │ ├── ReportAssert.cpp │ │ │ │ │ ├── ReportAssert.h │ │ │ │ │ ├── ReportAssertImpl.h │ │ │ │ │ ├── Test.cpp │ │ │ │ │ ├── Test.h │ │ │ │ │ ├── TestDetails.cpp │ │ │ │ │ ├── TestDetails.h │ │ │ │ │ ├── TestList.cpp │ │ │ │ │ ├── TestList.h │ │ │ │ │ ├── TestMacros.h │ │ │ │ │ ├── TestProperties.h │ │ │ │ │ ├── TestReporter.cpp │ │ │ │ │ ├── TestReporter.h │ │ │ │ │ ├── TestReporterStdout.cpp │ │ │ │ │ ├── TestReporterStdout.h │ │ │ │ │ ├── TestResults.cpp │ │ │ │ │ ├── TestResults.h │ │ │ │ │ ├── TestRunner.cpp │ │ │ │ │ ├── TestRunner.h │ │ │ │ │ ├── TestSuite.h │ │ │ │ │ ├── TimeHelpers.h │ │ │ │ │ ├── Win32 │ │ │ │ │ │ ├── TimeHelpers.cpp │ │ │ │ │ │ └── TimeHelpers.h │ │ │ │ │ ├── XmlTestReporter.cpp │ │ │ │ │ ├── XmlTestReporter.h │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ ├── stdafx.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── RecordingReporter.h │ │ │ │ │ │ ├── ScopedCurrentTest.h │ │ │ │ │ │ ├── TestAssertHandler.cpp │ │ │ │ │ │ ├── TestCheckMacros.cpp │ │ │ │ │ │ ├── TestChecks.cpp │ │ │ │ │ │ ├── TestCompositeTestReporter.cpp │ │ │ │ │ │ ├── TestCurrentTest.cpp │ │ │ │ │ │ ├── TestDeferredTestReporter.cpp │ │ │ │ │ │ ├── TestMemoryOutStream.cpp │ │ │ │ │ │ ├── TestTest.cpp │ │ │ │ │ │ ├── TestTestList.cpp │ │ │ │ │ │ ├── TestTestMacros.cpp │ │ │ │ │ │ ├── TestTestResults.cpp │ │ │ │ │ │ ├── TestTestRunner.cpp │ │ │ │ │ │ ├── TestTestSuite.cpp │ │ │ │ │ │ ├── TestUnitTestPP.cpp │ │ │ │ │ │ ├── TestXmlTestReporter.cpp │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ └── stdafx.h │ │ │ │ ├── unittestpp.h │ │ │ │ ├── vs12.winrt │ │ │ │ │ ├── UnitTestpp120.winrt.vcxproj │ │ │ │ │ └── UnitTestpp120.winrt.vcxproj.filters │ │ │ │ ├── vs12 │ │ │ │ │ ├── TestUnitTestpp120.vcxproj │ │ │ │ │ ├── TestUnitTestpp120.vcxproj.filters │ │ │ │ │ ├── UnitTestpp120.vcxproj │ │ │ │ │ └── UnitTestpp120.vcxproj.filters │ │ │ │ ├── vs14.android │ │ │ │ │ ├── UnitTestpp140.android.vcxproj │ │ │ │ │ └── UnitTestpp140.android.vcxproj.filters │ │ │ │ ├── vs14.uwp │ │ │ │ │ ├── UnitTestpp140.uwp.vcxproj │ │ │ │ │ └── UnitTestpp140.uwp.vcxproj.filters │ │ │ │ └── vs14 │ │ │ │ │ ├── TestUnitTestpp140.vcxproj │ │ │ │ │ ├── TestUnitTestpp140.vcxproj.filters │ │ │ │ │ ├── UnitTestpp140.vcxproj │ │ │ │ │ └── UnitTestpp140.vcxproj.filters │ │ │ ├── dirs.proj │ │ │ └── utilities │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dirs.proj │ │ │ │ ├── include │ │ │ │ ├── common_utilities_public.h │ │ │ │ ├── locale_guard.h │ │ │ │ └── os_utilities.h │ │ │ │ ├── os_utilities.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── targetver.h │ │ │ │ ├── vs12.winrt │ │ │ │ ├── CommonUtilities120.winrt.vcxproj │ │ │ │ └── CommonUtilities120.winrt.vcxproj.filters │ │ │ │ ├── vs12.xp │ │ │ │ └── CommonUtilities120.xp.vcxproj │ │ │ │ ├── vs12 │ │ │ │ ├── CommonUtilities120.vcxproj │ │ │ │ └── CommonUtilities120.vcxproj.filters │ │ │ │ ├── vs14.android │ │ │ │ ├── CommonUtilities140.android.vcxproj │ │ │ │ └── CommonUtilities140.android.vcxproj.filters │ │ │ │ ├── vs14.uwp │ │ │ │ ├── CommonUtilities140.uwp.vcxproj │ │ │ │ └── CommonUtilities140.uwp.vcxproj.filters │ │ │ │ ├── vs14.xp │ │ │ │ └── CommonUtilities140.xp.vcxproj │ │ │ │ └── vs14 │ │ │ │ ├── CommonUtilities140.vcxproj │ │ │ │ └── CommonUtilities140.vcxproj.filters │ │ │ ├── dirs.proj │ │ │ └── functional │ │ │ ├── CMakeLists.txt │ │ │ ├── dirs.proj │ │ │ ├── http │ │ │ ├── CMakeLists.txt │ │ │ ├── client │ │ │ │ ├── AuthListener │ │ │ │ │ ├── App.config │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── dirs.proj │ │ │ │ │ └── vs12 │ │ │ │ │ │ └── AuthListener120.csproj │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── authentication_tests.cpp │ │ │ │ ├── building_request_tests.cpp │ │ │ │ ├── client_construction.cpp │ │ │ │ ├── connections_and_errors.cpp │ │ │ │ ├── dirs.proj │ │ │ │ ├── header_tests.cpp │ │ │ │ ├── http_client_fuzz_tests.cpp │ │ │ │ ├── http_client_tests.cpp │ │ │ │ ├── http_client_tests.h │ │ │ │ ├── http_methods_tests.cpp │ │ │ │ ├── multiple_requests.cpp │ │ │ │ ├── oauth1_tests.cpp │ │ │ │ ├── oauth2_tests.cpp │ │ │ │ ├── outside_tests.cpp │ │ │ │ ├── pipeline_stage_tests.cpp │ │ │ │ ├── progress_handler_tests.cpp │ │ │ │ ├── proxy_tests.cpp │ │ │ │ ├── request_helper_tests.cpp │ │ │ │ ├── request_stream_tests.cpp │ │ │ │ ├── request_uri_tests.cpp │ │ │ │ ├── response_extract_tests.cpp │ │ │ │ ├── response_stream_tests.cpp │ │ │ │ ├── status_code_reason_phrase_tests.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── timeout_handler.h │ │ │ │ ├── to_string_tests.cpp │ │ │ │ ├── vs12.winrt │ │ │ │ │ ├── HttpClient120_test.winrt.vcxproj │ │ │ │ │ └── HttpClient120_test.winrt.vcxproj.filters │ │ │ │ ├── vs12 │ │ │ │ │ ├── HttpClient120_test.vcxproj │ │ │ │ │ └── HttpClient120_test.vcxproj.filters │ │ │ │ ├── vs14.android │ │ │ │ │ ├── HttpClient140_test.android.vcxproj │ │ │ │ │ ├── HttpClient140_test.android.vcxproj.filters │ │ │ │ │ └── packages.config │ │ │ │ ├── vs14.uwp │ │ │ │ │ ├── HttpClient140_test.uwp.vcxproj │ │ │ │ │ └── HttpClient140_test.uwp.vcxproj.filters │ │ │ │ └── vs14 │ │ │ │ │ ├── HttpClient140_test.vcxproj │ │ │ │ │ └── HttpClient140_test.vcxproj.filters │ │ │ ├── dirs.proj │ │ │ ├── listener │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── building_response_tests.cpp │ │ │ │ ├── connections_and_errors.cpp │ │ │ │ ├── dirs.proj │ │ │ │ ├── header_tests.cpp │ │ │ │ ├── http_listener_tests.h │ │ │ │ ├── listener_construction_tests.cpp │ │ │ │ ├── reply_helper_tests.cpp │ │ │ │ ├── request_extract_tests.cpp │ │ │ │ ├── request_handler_tests.cpp │ │ │ │ ├── request_relative_uri_tests.cpp │ │ │ │ ├── request_stream_tests.cpp │ │ │ │ ├── requests_tests.cpp │ │ │ │ ├── response_stream_tests.cpp │ │ │ │ ├── status_code_reason_phrase_tests.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── to_string_tests.cpp │ │ │ │ ├── vs12 │ │ │ │ │ ├── HttpListener120_test.vcxproj │ │ │ │ │ └── HttpListener120_test.vcxproj.filters │ │ │ │ ├── vs14.android │ │ │ │ │ ├── HttpListener140_test.android.vcxproj │ │ │ │ │ └── HttpListener140_test.android.vcxproj.filters │ │ │ │ └── vs14 │ │ │ │ │ ├── HttpListener140_test.vcxproj │ │ │ │ │ └── HttpListener140_test.vcxproj.filters │ │ │ └── utilities │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dirs.proj │ │ │ │ ├── http_asserts.cpp │ │ │ │ ├── include │ │ │ │ ├── http_asserts.h │ │ │ │ ├── http_test_utilities.h │ │ │ │ ├── http_test_utilities_public.h │ │ │ │ ├── test_http_client.h │ │ │ │ ├── test_http_server.h │ │ │ │ └── test_server_utilities.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── test_http_client.cpp │ │ │ │ ├── test_http_server.cpp │ │ │ │ ├── test_server_utilities.cpp │ │ │ │ ├── vs12.winrt │ │ │ │ ├── HttpTestUtilities120.winrt.vcxproj │ │ │ │ └── HttpTestUtilities120.winrt.vcxproj.filters │ │ │ │ ├── vs12 │ │ │ │ ├── HttpTestUtilities120.vcxproj │ │ │ │ └── HttpTestUtilities120.vcxproj.filters │ │ │ │ ├── vs14.android │ │ │ │ ├── HttpTestUtilities140.android.vcxproj │ │ │ │ └── HttpTestUtilities140.android.vcxproj.filters │ │ │ │ ├── vs14.uwp │ │ │ │ ├── HttpTestUtilities140.uwp.vcxproj │ │ │ │ └── HttpTestUtilities140.uwp.vcxproj.filters │ │ │ │ └── vs14 │ │ │ │ ├── HttpTestUtilities140.vcxproj │ │ │ │ └── HttpTestUtilities140.vcxproj.filters │ │ │ ├── json │ │ │ ├── CMakeLists.txt │ │ │ ├── construction_tests.cpp │ │ │ ├── dirs.proj │ │ │ ├── fuzz_tests.cpp │ │ │ ├── iterator_tests.cpp │ │ │ ├── json_numbers_tests.cpp │ │ │ ├── json_tests.h │ │ │ ├── negative_parsing_tests.cpp │ │ │ ├── parsing_tests.cpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── to_as_and_operators_tests.cpp │ │ │ ├── vs12.winrt │ │ │ │ ├── JSON120_test.winrt.vcxproj │ │ │ │ └── JSON120_test.winrt.vcxproj.filters │ │ │ ├── vs12.xp │ │ │ │ └── JSON120_test.xp.vcxproj │ │ │ ├── vs12 │ │ │ │ ├── JSON120_test.vcxproj │ │ │ │ └── JSON120_test.vcxproj.filters │ │ │ ├── vs14.android │ │ │ │ ├── JSON140_test.android.vcxproj │ │ │ │ └── JSON140_test.android.vcxproj.filters │ │ │ ├── vs14.uwp │ │ │ │ ├── JSON140_test.uwp.vcxproj │ │ │ │ └── JSON140_test.uwp.vcxproj.filters │ │ │ ├── vs14.xp │ │ │ │ └── JSON140_test.xp.vcxproj │ │ │ └── vs14 │ │ │ │ ├── JSON140_test.vcxproj │ │ │ │ └── JSON140_test.vcxproj.filters │ │ │ ├── misc │ │ │ ├── atl_headers │ │ │ │ ├── Resource.h │ │ │ │ ├── dirs.proj │ │ │ │ ├── header_test.rc │ │ │ │ ├── header_test1.cpp │ │ │ │ ├── header_test2.cpp │ │ │ │ └── vs12 │ │ │ │ │ ├── header_test120.vcxproj │ │ │ │ │ └── header_test120.vcxproj.filters │ │ │ ├── dirs.proj │ │ │ └── version │ │ │ │ ├── dirs.proj │ │ │ │ ├── version.cpp │ │ │ │ └── vs14 │ │ │ │ └── version140_test.vcxproj │ │ │ ├── pplx │ │ │ ├── CMakeLists.txt │ │ │ ├── dirs.proj │ │ │ └── pplx_test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dirs.proj │ │ │ │ ├── pplx_op_test.cpp │ │ │ │ ├── pplx_task_options.cpp │ │ │ │ ├── pplxtask_tests.cpp │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── vs12.winrt │ │ │ │ └── pplx120_test.winrt.vcxproj │ │ │ │ ├── vs12.xp │ │ │ │ └── pplx120_test.xp.vcxproj │ │ │ │ ├── vs12 │ │ │ │ └── pplx120_test.vcxproj │ │ │ │ ├── vs14.android │ │ │ │ └── pplx140_test.android.vcxproj │ │ │ │ ├── vs14.uwp │ │ │ │ └── pplx140_test.uwp.vcxproj │ │ │ │ ├── vs14.xp │ │ │ │ └── pplx140_test.xp.vcxproj │ │ │ │ └── vs14 │ │ │ │ └── pplx140_test.vcxproj │ │ │ ├── streams │ │ │ ├── CMakeLists.txt │ │ │ ├── CppSparseFile.cpp │ │ │ ├── CppSparseFile.h │ │ │ ├── dirs.proj │ │ │ ├── fstreambuf_tests.cpp │ │ │ ├── fuzz_tests.cpp │ │ │ ├── istream_tests.cpp │ │ │ ├── memstream_tests.cpp │ │ │ ├── ostream_tests.cpp │ │ │ ├── prefix.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── stdstream_tests.cpp │ │ │ ├── streams_tests.h │ │ │ ├── vs12.winrt │ │ │ │ ├── streams120_test.winrt.vcxproj │ │ │ │ └── streams120_test.winrt.vcxproj.filters │ │ │ ├── vs12.xp │ │ │ │ └── streams120_test.xp.vcxproj │ │ │ ├── vs12 │ │ │ │ ├── streams120_test.vcxproj │ │ │ │ └── streams120_test.vcxproj.filters │ │ │ ├── vs14.android │ │ │ │ ├── streams140_test.android.vcxproj │ │ │ │ └── streams140_test.android.vcxproj.filters │ │ │ ├── vs14.uwp │ │ │ │ ├── streams140_test.uwp.vcxproj │ │ │ │ └── streams140_test.uwp.vcxproj.filters │ │ │ ├── vs14.xp │ │ │ │ └── streams140_test.xp.vcxproj │ │ │ ├── vs14 │ │ │ │ ├── streams140_test.vcxproj │ │ │ │ └── streams140_test.vcxproj.filters │ │ │ └── winrt_interop_tests.cpp │ │ │ ├── uri │ │ │ ├── CMakeLists.txt │ │ │ ├── accessor_tests.cpp │ │ │ ├── combining_tests.cpp │ │ │ ├── constructor_tests.cpp │ │ │ ├── conversions_tests.cpp │ │ │ ├── diagnostic_tests.cpp │ │ │ ├── dirs.proj │ │ │ ├── encoding_tests.cpp │ │ │ ├── operator_tests.cpp │ │ │ ├── splitting_tests.cpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── uri_builder_tests.cpp │ │ │ ├── uri_tests.h │ │ │ ├── vs12.winrt │ │ │ │ ├── URI120_test.winrt.vcxproj.filters │ │ │ │ └── Uri120_test.winrt.vcxproj │ │ │ ├── vs12.xp │ │ │ │ └── Uri120_test.xp.vcxproj │ │ │ ├── vs12 │ │ │ │ ├── Uri120_test.vcxproj │ │ │ │ └── Uri120_test.vcxproj.filters │ │ │ ├── vs14.android │ │ │ │ ├── Uri140_test.android.vcxproj │ │ │ │ └── Uri140_test.android.vcxproj.filters │ │ │ ├── vs14.uwp │ │ │ │ ├── URI140_test.uwp.vcxproj.filters │ │ │ │ └── Uri140_test.uwp.vcxproj │ │ │ ├── vs14.xp │ │ │ │ └── Uri140_test.xp.vcxproj │ │ │ └── vs14 │ │ │ │ ├── Uri140_test.vcxproj │ │ │ │ └── Uri140_test.vcxproj.filters │ │ │ ├── utils │ │ │ ├── CMakeLists.txt │ │ │ ├── base64.cpp │ │ │ ├── datetime.cpp │ │ │ ├── dirs.proj │ │ │ ├── macro_test.cpp │ │ │ ├── nonce_generator_tests.cpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── strings.cpp │ │ │ ├── utils_tests.h │ │ │ ├── vs12.winrt │ │ │ │ ├── Utils120_test.winrt.vcxproj │ │ │ │ └── Utils120_test.winrt.vcxproj.filters │ │ │ ├── vs12.xp │ │ │ │ └── Utils120_test.xp.vcxproj │ │ │ ├── vs12 │ │ │ │ ├── Utils120_test.vcxproj │ │ │ │ └── Utils120_test.vcxproj.filters │ │ │ ├── vs14.android │ │ │ │ ├── Utils140_test.android.vcxproj │ │ │ │ └── Utils140_test.android.vcxproj.filters │ │ │ ├── vs14.uwp │ │ │ │ ├── Utils140_test.uwp.vcxproj │ │ │ │ └── Utils140_test.uwp.vcxproj.filters │ │ │ ├── vs14.xp │ │ │ │ └── Utils140_test.xp.vcxproj │ │ │ └── vs14 │ │ │ │ ├── Utils140_test.vcxproj │ │ │ │ └── Utils140_test.vcxproj.filters │ │ │ └── websockets │ │ │ ├── CMakeLists.txt │ │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ ├── authentication_tests.cpp │ │ │ ├── client_construction.cpp │ │ │ ├── close_tests.cpp │ │ │ ├── dirs.proj │ │ │ ├── error_tests.cpp │ │ │ ├── proxy_tests.cpp │ │ │ ├── receive_msg_tests.cpp │ │ │ ├── send_msg_tests.cpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── vs12.winrt │ │ │ │ └── websocketsclient120_test.winrt.vcxproj │ │ │ ├── vs12.xp │ │ │ │ └── websocketsclient120_test.xp.vcxproj │ │ │ ├── vs12 │ │ │ │ └── websocketsclient120_test.vcxproj │ │ │ ├── vs14.android │ │ │ │ └── websocketsclient140_test.android.vcxproj │ │ │ ├── vs14.uwp │ │ │ │ └── websocketsclient140_test.uwp.vcxproj │ │ │ ├── vs14.xp │ │ │ │ └── websocketsclient140_test.xp.vcxproj │ │ │ ├── vs14 │ │ │ │ └── websocketsclient140_test.vcxproj │ │ │ └── websocket_client_tests.h │ │ │ ├── dirs.proj │ │ │ └── utilities │ │ │ ├── dirs.proj │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── test_websocket_server.cpp │ │ │ ├── test_websocket_server.h │ │ │ ├── vs12.winrt │ │ │ └── websockets_test_utilities120.winrt.vcxproj │ │ │ ├── vs12.xp │ │ │ └── websockets_test_utilities120.xp.vcxproj │ │ │ ├── vs12 │ │ │ ├── packages.config │ │ │ └── websockets_test_utilities120.vcxproj │ │ │ ├── vs14.android │ │ │ ├── packages.config │ │ │ └── websockets_test_utilities140.android.vcxproj │ │ │ ├── vs14.uwp │ │ │ ├── packages.config │ │ │ └── websockets_test_utilities140.uwp.vcxproj │ │ │ ├── vs14.xp │ │ │ └── websockets_test_utilities140.xp.vcxproj │ │ │ └── vs14 │ │ │ ├── packages.config │ │ │ └── websockets_test_utilities140.vcxproj │ │ ├── ThirdPartyNotices.txt │ │ ├── build.root │ │ ├── cpprestsdk120.sln │ │ ├── cpprestsdk140.sln │ │ ├── license.txt │ │ ├── setup_ps_env_VS2013.ps1 │ │ └── setup_ps_env_VS2015.ps1 └── source │ ├── account_api.cpp │ ├── algo_hmac.cpp │ ├── algo_hmac.h │ ├── base64.hpp │ ├── constants.h │ ├── ett_api.cpp │ ├── futures_api.cpp │ ├── main.cpp │ ├── okapi.cpp │ ├── okapi.h │ ├── okapi_ws.cpp │ ├── okapi_ws.h │ ├── spot │ ├── margin_account_api.cpp │ ├── margin_order_api.cpp │ ├── spot_account_api.cpp │ ├── spot_order_api.cpp │ └── spot_product_api.cpp │ ├── swap.cpp │ ├── utils.cpp │ └── utils.h ├── okcoin-cs-sdk-api ├── .vs │ ├── OKCoin │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ ├── OKCoinSDK │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ └── OKExSDK │ │ └── DesignTimeBuild │ │ └── .dtbcache ├── OKCoin.sln ├── OKExSDK │ ├── AccountApi.cs │ ├── Encryptor.cs │ ├── EttApi.cs │ ├── FuturesApi.cs │ ├── GeneralApi.cs │ ├── HttpInterceptor.cs │ ├── MarginApi.cs │ ├── Models │ │ ├── Account │ │ │ ├── AccountLedger.cs │ │ │ ├── Currency.cs │ │ │ ├── DepositAddress.cs │ │ │ ├── DepositHistory.cs │ │ │ ├── Transfer.cs │ │ │ ├── TransferResult.cs │ │ │ ├── Wallet.cs │ │ │ ├── WithDrawal.cs │ │ │ ├── WithDrawalHistory.cs │ │ │ ├── WithDrawalResult.cs │ │ │ └── WithdrawalFee.cs │ │ ├── ErrorResult.cs │ │ ├── Ett │ │ │ ├── Constituents.cs │ │ │ ├── ConstituentsDetail.cs │ │ │ ├── DefinePrice.cs │ │ │ ├── EttAccount.cs │ │ │ ├── EttAccountSingle.cs │ │ │ ├── EttLedger.cs │ │ │ ├── EttLedgerDetail.cs │ │ │ ├── EttOrder.cs │ │ │ ├── EttOrderFullInfo.cs │ │ │ └── EttOrderResult.cs │ │ ├── Futures │ │ │ ├── Account.cs │ │ │ ├── AccountCrossed.cs │ │ │ ├── AccountFixed.cs │ │ │ ├── Book.cs │ │ │ ├── CancelOrderBatchResult.cs │ │ │ ├── CancelOrderResult.cs │ │ │ ├── Contract.cs │ │ │ ├── EstimatedPrice.cs │ │ │ ├── Fill.cs │ │ │ ├── Hold.cs │ │ │ ├── Index.cs │ │ │ ├── Instrument.cs │ │ │ ├── Ledger.cs │ │ │ ├── LedgerDetails.cs │ │ │ ├── Leverage.cs │ │ │ ├── LeverageCrossed.cs │ │ │ ├── LeverageFixed.cs │ │ │ ├── Liquidation.cs │ │ │ ├── OpenInterest.cs │ │ │ ├── Order.cs │ │ │ ├── OrderBatch.cs │ │ │ ├── OrderBatchDetail.cs │ │ │ ├── OrderBatchResult.cs │ │ │ ├── OrderBatchResultDetail.cs │ │ │ ├── OrderListResult.cs │ │ │ ├── OrderResultSingle.cs │ │ │ ├── OrderSingle.cs │ │ │ ├── Position.cs │ │ │ ├── PositionCrossed.cs │ │ │ ├── PositionFIxed.cs │ │ │ ├── PositionResult.cs │ │ │ ├── PriceLimit.cs │ │ │ ├── Rate.cs │ │ │ ├── SetCrossedLeverageResult.cs │ │ │ ├── SetFixedLeverageResult.cs │ │ │ ├── Ticker.cs │ │ │ └── Trade.cs │ │ ├── General │ │ │ └── ServerTime.cs │ │ ├── Margin │ │ │ ├── Borrow.cs │ │ │ ├── BorrowResult.cs │ │ │ ├── Borrowed.cs │ │ │ ├── MarginAccount.cs │ │ │ ├── MarginAvailable.cs │ │ │ ├── MarginCancelOrderBatch.cs │ │ │ ├── MarginFill.cs │ │ │ ├── MarginLedger.cs │ │ │ ├── MarginLedgerDetail.cs │ │ │ ├── MarginOrder.cs │ │ │ ├── MarginOrderFullInfo.cs │ │ │ ├── MarginOrderLimit.cs │ │ │ ├── MarginOrderMarket.cs │ │ │ ├── MarginOrderResult.cs │ │ │ ├── Repayment.cs │ │ │ └── RepaymentResult.cs │ │ ├── Spot │ │ │ ├── CancelOrderBatch.cs │ │ │ ├── OrderFullInfo.cs │ │ │ ├── SpotAccount.cs │ │ │ ├── SpotBook.cs │ │ │ ├── SpotCandle.cs │ │ │ ├── SpotFill.cs │ │ │ ├── SpotInstrument.cs │ │ │ ├── SpotLedger.cs │ │ │ ├── SpotLedgerDetail.cs │ │ │ ├── SpotOrder.cs │ │ │ ├── SpotOrderLimit.cs │ │ │ ├── SpotOrderMarket.cs │ │ │ ├── SpotOrderResult.cs │ │ │ ├── SpotTicker.cs │ │ │ └── SpotTrade.cs │ │ └── Swap │ │ │ ├── Account.cs │ │ │ ├── AccountResult.cs │ │ │ ├── AccountsResult.cs │ │ │ ├── CancelOrderBatchResult.cs │ │ │ ├── CancelOrderResult.cs │ │ │ ├── Depth.cs │ │ │ ├── Fill.cs │ │ │ ├── FundingTime.cs │ │ │ ├── HistoricalFundingRate.cs │ │ │ ├── Hold.cs │ │ │ ├── Index.cs │ │ │ ├── Instrument.cs │ │ │ ├── Ledger.cs │ │ │ ├── Leverage.cs │ │ │ ├── Liquidation.cs │ │ │ ├── MarkPrice.cs │ │ │ ├── OpenInterest.cs │ │ │ ├── Order.cs │ │ │ ├── OrderBatch.cs │ │ │ ├── OrderBatchDetail.cs │ │ │ ├── OrderBatchResult.cs │ │ │ ├── OrderBatchResultDetail.cs │ │ │ ├── OrderListResult.cs │ │ │ ├── OrderResultSingle.cs │ │ │ ├── OrderSingle.cs │ │ │ ├── Position.cs │ │ │ ├── PositionResult.cs │ │ │ ├── PriceLimit.cs │ │ │ ├── Rate.cs │ │ │ ├── Ticker.cs │ │ │ └── Trade.cs │ ├── OKCoinSDK.csproj │ ├── SdkApi.cs │ ├── SpotApi.cs │ ├── SwapApi.cs │ ├── WebSocketor.cs │ ├── bin │ │ └── Debug │ │ │ └── netstandard2.0 │ │ │ ├── OKExSDK.deps.json │ │ │ ├── OKExSDK.dll │ │ │ └── OKExSDK.pdb │ └── obj │ │ ├── Debug │ │ └── netstandard2.0 │ │ │ ├── OKCoinSDK.AssemblyInfo.cs │ │ │ ├── OKCoinSDK.AssemblyInfoInputs.cache │ │ │ ├── OKCoinSDK.assets.cache │ │ │ ├── OKCoinSDK.csprojAssemblyReference.cache │ │ │ ├── OKExSDK.AssemblyInfo.cs │ │ │ ├── OKExSDK.AssemblyInfoInputs.cache │ │ │ ├── OKExSDK.assets.cache │ │ │ ├── OKExSDK.csproj.FileListAbsolute.txt │ │ │ ├── OKExSDK.csprojAssemblyReference.cache │ │ │ ├── OKExSDK.dll │ │ │ └── OKExSDK.pdb │ │ ├── OKCoinSDK.csproj.nuget.cache │ │ ├── OKCoinSDK.csproj.nuget.dgspec.json │ │ ├── OKCoinSDK.csproj.nuget.g.props │ │ ├── OKCoinSDK.csproj.nuget.g.targets │ │ ├── OKExSDK.csproj.nuget.cache │ │ ├── OKExSDK.csproj.nuget.dgspec.json │ │ ├── OKExSDK.csproj.nuget.g.props │ │ ├── OKExSDK.csproj.nuget.g.targets │ │ └── project.assets.json ├── OKExSDKLibrary │ ├── AccountApi.cs │ ├── Encryptor.cs │ ├── GeneralApi.cs │ ├── HttpInterceptor.cs │ ├── MarginApi.cs │ ├── Models │ │ ├── Account │ │ │ ├── AccountLedger.cs │ │ │ ├── Currency.cs │ │ │ ├── DepositAddress.cs │ │ │ ├── DepositHistory.cs │ │ │ ├── Transfer.cs │ │ │ ├── TransferResult.cs │ │ │ ├── Wallet.cs │ │ │ ├── WithDrawal.cs │ │ │ ├── WithDrawalHistory.cs │ │ │ ├── WithDrawalResult.cs │ │ │ └── WithdrawalFee.cs │ │ ├── ErrorResult.cs │ │ ├── Ett │ │ │ ├── Constituents.cs │ │ │ ├── ConstituentsDetail.cs │ │ │ ├── DefinePrice.cs │ │ │ ├── EttAccount.cs │ │ │ ├── EttAccountSingle.cs │ │ │ ├── EttLedger.cs │ │ │ ├── EttLedgerDetail.cs │ │ │ ├── EttOrder.cs │ │ │ ├── EttOrderFullInfo.cs │ │ │ └── EttOrderResult.cs │ │ ├── Futures │ │ │ ├── AccountCrossed.cs │ │ │ ├── AccountFixed.cs │ │ │ ├── Book.cs │ │ │ ├── CancelOrderBatchResult.cs │ │ │ ├── CancelOrderResult.cs │ │ │ ├── Contract.cs │ │ │ ├── EstimatedPrice.cs │ │ │ ├── Fill.cs │ │ │ ├── Hold.cs │ │ │ ├── Index.cs │ │ │ ├── Instrument.cs │ │ │ ├── Ledger.cs │ │ │ ├── LedgerDetails.cs │ │ │ ├── Leverage.cs │ │ │ ├── LeverageCrossed.cs │ │ │ ├── LeverageFixed.cs │ │ │ ├── Liquidation.cs │ │ │ ├── OpenInterest.cs │ │ │ ├── Order.cs │ │ │ ├── OrderBatch.cs │ │ │ ├── OrderBatchDetail.cs │ │ │ ├── OrderBatchResult.cs │ │ │ ├── OrderBatchResultDetail.cs │ │ │ ├── OrderListResult.cs │ │ │ ├── OrderResultSingle.cs │ │ │ ├── OrderSingle.cs │ │ │ ├── Position.cs │ │ │ ├── PositionCrossed.cs │ │ │ ├── PositionFIxed.cs │ │ │ ├── PositionResult.cs │ │ │ ├── PriceLimit.cs │ │ │ ├── Rate.cs │ │ │ ├── SetCrossedLeverageResult.cs │ │ │ ├── SetFixedLeverageResult.cs │ │ │ ├── Ticker.cs │ │ │ └── Trade.cs │ │ ├── General │ │ │ └── ServerTime.cs │ │ ├── Margin │ │ │ ├── Borrow.cs │ │ │ ├── BorrowResult.cs │ │ │ ├── Borrowed.cs │ │ │ ├── MarginAccount.cs │ │ │ ├── MarginAvailable.cs │ │ │ ├── MarginCancelOrderBatch.cs │ │ │ ├── MarginFill.cs │ │ │ ├── MarginLedger.cs │ │ │ ├── MarginLedgerDetail.cs │ │ │ ├── MarginOrder.cs │ │ │ ├── MarginOrderFullInfo.cs │ │ │ ├── MarginOrderLimit.cs │ │ │ ├── MarginOrderMarket.cs │ │ │ ├── MarginOrderResult.cs │ │ │ ├── Repayment.cs │ │ │ └── RepaymentResult.cs │ │ ├── Spot │ │ │ ├── CancelOrderBatch.cs │ │ │ ├── OrderFullInfo.cs │ │ │ ├── SpotAccount.cs │ │ │ ├── SpotBook.cs │ │ │ ├── SpotCandle.cs │ │ │ ├── SpotFill.cs │ │ │ ├── SpotInstrument.cs │ │ │ ├── SpotLedger.cs │ │ │ ├── SpotLedgerDetail.cs │ │ │ ├── SpotOrder.cs │ │ │ ├── SpotOrderLimit.cs │ │ │ ├── SpotOrderMarket.cs │ │ │ ├── SpotOrderResult.cs │ │ │ ├── SpotTicker.cs │ │ │ └── SpotTrade.cs │ │ └── Swap │ │ │ ├── Account.cs │ │ │ ├── AccountResult.cs │ │ │ ├── AccountsResult.cs │ │ │ ├── CancelOrderBatchResult.cs │ │ │ ├── CancelOrderResult.cs │ │ │ ├── Depth.cs │ │ │ ├── Fill.cs │ │ │ ├── FundingTime.cs │ │ │ ├── HistoricalFundingRate.cs │ │ │ ├── Hold.cs │ │ │ ├── Index.cs │ │ │ ├── Instrument.cs │ │ │ ├── Ledger.cs │ │ │ ├── Leverage.cs │ │ │ ├── Liquidation.cs │ │ │ ├── MarkPrice.cs │ │ │ ├── OpenInterest.cs │ │ │ ├── Order.cs │ │ │ ├── OrderBatch.cs │ │ │ ├── OrderBatchDetail.cs │ │ │ ├── OrderBatchResult.cs │ │ │ ├── OrderBatchResultDetail.cs │ │ │ ├── OrderListResult.cs │ │ │ ├── OrderResultSingle.cs │ │ │ ├── OrderSingle.cs │ │ │ ├── Position.cs │ │ │ ├── PositionResult.cs │ │ │ ├── PriceLimit.cs │ │ │ ├── Rate.cs │ │ │ ├── Ticker.cs │ │ │ └── Trade.cs │ ├── OKCoinSDKLibrary.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SdkApi.cs │ ├── SpotApi.cs │ ├── WebSocketor.cs │ ├── app.config │ ├── bin │ │ └── Debug │ │ │ ├── DotNetZip.dll │ │ │ ├── DotNetZip.pdb │ │ │ ├── DotNetZip.xml │ │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.dll │ │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.xml │ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ │ ├── Microsoft.Threading.Tasks.dll │ │ │ ├── Microsoft.Threading.Tasks.xml │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.pdb │ │ │ ├── Newtonsoft.Json.xml │ │ │ ├── OKExSDKLibrary.dll │ │ │ ├── OKExSDKLibrary.dll.config │ │ │ ├── OKExSDKLibrary.pdb │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Extensions.xml │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ └── System.Net.Http.Primitives.xml │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── OKCoinSDKLibrary.csproj.App.config │ │ │ ├── OKCoinSDKLibrary.csproj.CopyComplete │ │ │ ├── OKCoinSDKLibrary.csproj.FileListAbsolute.txt │ │ │ ├── OKCoinSDKLibrary.csprojAssemblyReference.cache │ │ │ ├── OKExSDKLibrary.csproj.App.config │ │ │ ├── OKExSDKLibrary.csproj.CopyComplete │ │ │ ├── OKExSDKLibrary.csproj.FileListAbsolute.txt │ │ │ ├── OKExSDKLibrary.csprojAssemblyReference.cache │ │ │ ├── OKExSDKLibrary.dll │ │ │ └── OKExSDKLibrary.pdb │ └── packages.config ├── README.md ├── SampleCS │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── KeyInfo.cs │ ├── MainViewModel.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SampleCS.csproj │ ├── SampleCS.csproj.user │ ├── bin │ │ └── Debug │ │ │ ├── DotNetZip.dll │ │ │ ├── DotNetZip.pdb │ │ │ ├── DotNetZip.xml │ │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.dll │ │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.xml │ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ │ ├── Microsoft.Threading.Tasks.dll │ │ │ ├── Microsoft.Threading.Tasks.xml │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.pdb │ │ │ ├── Newtonsoft.Json.xml │ │ │ ├── OKExSDKLibrary.dll │ │ │ ├── OKExSDKLibrary.dll.config │ │ │ ├── OKExSDKLibrary.pdb │ │ │ ├── SampleCS.application │ │ │ ├── SampleCS.exe │ │ │ ├── SampleCS.exe.config │ │ │ ├── SampleCS.exe.manifest │ │ │ ├── SampleCS.pdb │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Extensions.xml │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ ├── System.Net.Http.Primitives.xml │ │ │ └── app.publish │ │ │ └── SampleCS.exe │ ├── obj │ │ └── Debug │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ ├── SampleCS.Properties.Resources.resources │ │ │ ├── SampleCS.application │ │ │ ├── SampleCS.csproj.CopyComplete │ │ │ ├── SampleCS.csproj.FileListAbsolute.txt │ │ │ ├── SampleCS.csproj.GenerateResource.cache │ │ │ ├── SampleCS.csprojAssemblyReference.cache │ │ │ ├── SampleCS.exe │ │ │ ├── SampleCS.exe.manifest │ │ │ ├── SampleCS.g.resources │ │ │ ├── SampleCS.pdb │ │ │ ├── SampleCS_MarkupCompile.cache │ │ │ ├── SampleCS_MarkupCompile.i.cache │ │ │ ├── SampleCS_MarkupCompile.i.lref │ │ │ ├── SampleCS_MarkupCompile.lref │ │ │ └── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ └── packages.config └── packages │ ├── DotNetZip.1.13.4 │ ├── .signature.p7s │ ├── DotNetZip.1.13.4.nupkg │ └── lib │ │ ├── net40 │ │ ├── DotNetZip.dll │ │ ├── DotNetZip.pdb │ │ └── DotNetZip.xml │ │ └── netstandard2.0 │ │ ├── DotNetZip.dll │ │ ├── DotNetZip.pdb │ │ └── DotNetZip.xml │ ├── HtmlAgilityPack.1.11.16 │ ├── .signature.p7s │ ├── HtmlAgilityPack.1.11.16.nupkg │ └── lib │ │ ├── Net35 │ │ ├── HtmlAgilityPack.dll │ │ ├── HtmlAgilityPack.pdb │ │ └── HtmlAgilityPack.xml │ │ ├── Net40-client │ │ ├── HtmlAgilityPack.dll │ │ ├── HtmlAgilityPack.pdb │ │ └── HtmlAgilityPack.xml │ │ ├── Net40 │ │ ├── HtmlAgilityPack.XML │ │ ├── HtmlAgilityPack.dll │ │ └── HtmlAgilityPack.pdb │ │ ├── Net45 │ │ ├── HtmlAgilityPack.XML │ │ ├── HtmlAgilityPack.dll │ │ └── HtmlAgilityPack.pdb │ │ ├── NetCore45 │ │ ├── HtmlAgilityPack.XML │ │ ├── HtmlAgilityPack.dll │ │ └── HtmlAgilityPack.pdb │ │ ├── netstandard1.3 │ │ ├── HtmlAgilityPack.deps.json │ │ ├── HtmlAgilityPack.dll │ │ ├── HtmlAgilityPack.pdb │ │ └── HtmlAgilityPack.xml │ │ ├── netstandard1.6 │ │ ├── HtmlAgilityPack.deps.json │ │ ├── HtmlAgilityPack.dll │ │ ├── HtmlAgilityPack.pdb │ │ └── HtmlAgilityPack.xml │ │ ├── netstandard2.0 │ │ ├── HtmlAgilityPack.deps.json │ │ ├── HtmlAgilityPack.dll │ │ ├── HtmlAgilityPack.pdb │ │ └── HtmlAgilityPack.xml │ │ ├── portable-net45+netcore45+wp8+MonoAndroid+MonoTouch │ │ ├── HtmlAgilityPack.XML │ │ ├── HtmlAgilityPack.dll │ │ └── HtmlAgilityPack.pdb │ │ ├── portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch │ │ ├── HtmlAgilityPack.XML │ │ ├── HtmlAgilityPack.dll │ │ └── HtmlAgilityPack.pdb │ │ └── uap10.0 │ │ ├── HtmlAgilityPack.XML │ │ ├── HtmlAgilityPack.dll │ │ ├── HtmlAgilityPack.pdb │ │ └── HtmlAgilityPack.pri │ ├── Microsoft.Bcl.1.1.10 │ ├── .signature.p7s │ ├── License-Stable.rtf │ ├── Microsoft.Bcl.1.1.10.nupkg │ └── lib │ │ ├── Xamarin.iOS10 │ │ └── _._ │ │ ├── monoandroid │ │ └── _._ │ │ ├── monotouch │ │ └── _._ │ │ ├── net40 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── net45 │ │ └── _._ │ │ ├── portable-net40+sl4+win8+wp71+wpa81 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+sl4+win8+wp8+wpa81 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+sl4+win8 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+win8+wp8+wpa81 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+win8 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ │ ├── portable-net45+win8+wpa81 │ │ └── _._ │ │ ├── portable-net451+win81+wpa81 │ │ └── _._ │ │ ├── portable-net451+win81 │ │ └── _._ │ │ ├── portable-win81+wp81+wpa81 │ │ └── _._ │ │ ├── sl4-windowsphone71 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Tasks.xml │ │ └── ensureRedirect.xml │ │ ├── sl4 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ └── System.Threading.Tasks.xml │ │ ├── sl5 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── System.Threading.Tasks.dll │ │ └── System.Threading.Tasks.xml │ │ ├── win8 │ │ └── _._ │ │ ├── wp8 │ │ └── _._ │ │ └── wpa81 │ │ └── _._ │ ├── Microsoft.Bcl.Async.1.0.168 │ ├── .signature.p7s │ ├── License-Stable.rtf │ ├── Microsoft.Bcl.Async.1.0.168.nupkg │ └── lib │ │ ├── net40 │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.xml │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ ├── Microsoft.Threading.Tasks.dll │ │ └── Microsoft.Threading.Tasks.xml │ │ ├── portable-net40+sl4+win8+wp71+wpa81 │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ ├── Microsoft.Threading.Tasks.dll │ │ └── Microsoft.Threading.Tasks.xml │ │ ├── portable-net45+win8+wp8+wpa81 │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ ├── Microsoft.Threading.Tasks.dll │ │ └── Microsoft.Threading.Tasks.xml │ │ ├── portable-net45+win8+wpa81 │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ ├── Microsoft.Threading.Tasks.dll │ │ └── Microsoft.Threading.Tasks.xml │ │ ├── sl4-windowsphone71 │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.xml │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ ├── Microsoft.Threading.Tasks.dll │ │ └── Microsoft.Threading.Tasks.xml │ │ ├── sl4 │ │ ├── Microsoft.Threading.Tasks.Extensions.Silverlight.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.Silverlight.xml │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ ├── Microsoft.Threading.Tasks.dll │ │ └── Microsoft.Threading.Tasks.xml │ │ ├── win8 │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ ├── Microsoft.Threading.Tasks.dll │ │ └── Microsoft.Threading.Tasks.xml │ │ ├── wp8 │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.xml │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ ├── Microsoft.Threading.Tasks.dll │ │ └── Microsoft.Threading.Tasks.xml │ │ └── wpa81 │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ ├── Microsoft.Threading.Tasks.dll │ │ └── Microsoft.Threading.Tasks.xml │ ├── Microsoft.Bcl.Build.1.0.21 │ ├── .signature.p7s │ ├── License-Stable.rtf │ ├── Microsoft.Bcl.Build.1.0.21.nupkg │ └── build │ │ ├── Microsoft.Bcl.Build.Tasks.dll │ │ └── Microsoft.Bcl.Build.targets │ ├── Microsoft.Net.Http.2.2.29 │ ├── .signature.p7s │ ├── License-Stable.rtf │ ├── Microsoft.Net.Http.2.2.29.nupkg │ └── lib │ │ ├── Xamarin.iOS10 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ └── System.Net.Http.Primitives.xml │ │ ├── monoandroid │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ └── System.Net.Http.Primitives.xml │ │ ├── monotouch │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ └── System.Net.Http.Primitives.xml │ │ ├── net40 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.Primitives.xml │ │ ├── System.Net.Http.WebRequest.dll │ │ ├── System.Net.Http.WebRequest.xml │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Http.xml │ │ └── ensureRedirect.xml │ │ ├── net45 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.Primitives.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net40+sl4+win8+wp71+wpa81 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.XML │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Http.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net45+win8+wpa81 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.Primitives.xml │ │ └── ensureRedirect.xml │ │ ├── portable-net45+win8 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.Primitives.xml │ │ └── ensureRedirect.xml │ │ ├── sl4-windowsphone71 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.XML │ │ ├── System.Net.Http.Primitives.dll │ │ ├── System.Net.Http.dll │ │ └── System.Net.Http.xml │ │ ├── win8 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ └── System.Net.Http.Primitives.xml │ │ └── wpa81 │ │ ├── System.Net.Http.Extensions.XML │ │ ├── System.Net.Http.Extensions.dll │ │ ├── System.Net.Http.Primitives.dll │ │ └── System.Net.Http.Primitives.xml │ └── Newtonsoft.Json.12.0.1 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.12.0.1.nupkg │ └── lib │ ├── net20 │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.pdb │ └── Newtonsoft.Json.xml │ ├── net35 │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.pdb │ └── Newtonsoft.Json.xml │ ├── net40 │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.pdb │ └── Newtonsoft.Json.xml │ ├── net45 │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.pdb │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.pdb │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.pdb │ └── Newtonsoft.Json.xml │ ├── netstandard2.0 │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.pdb │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+win8+wp8+wpa81 │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.pdb │ └── Newtonsoft.Json.xml │ └── portable-net45+win8+wp8+wpa81 │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.pdb │ └── Newtonsoft.Json.xml ├── okcoin-go-sdk-api ├── .idea │ ├── .gitignore │ ├── misc.xml │ ├── modules.xml │ ├── okex-go-sdk-api.iml │ └── vcs.xml ├── README.md ├── account_rest_api.go ├── account_rest_api_test.go ├── client.go ├── config.go ├── constants.go ├── cursor_page.go ├── cursor_page_test.go ├── futures_api.go ├── futures_constants.go ├── futures_params.go ├── futures_results.go ├── futures_test.go ├── general_api.go ├── margin_rest_api.go ├── margin_rest_api_test.go ├── spot_rest_api.go ├── spot_rest_api_test.go ├── swap_api.go ├── swap_params.go ├── swap_results.go ├── swap_test.go ├── test_helper.go ├── uri_constants.go ├── utils.go ├── ws_agent.go ├── ws_base.go ├── ws_constants.go └── ws_test.go ├── okcoin-java-sdk-api ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── libraries │ │ ├── Maven__ch_qos_logback_logback_classic_1_2_3.xml │ │ ├── Maven__ch_qos_logback_logback_core_1_2_3.xml │ │ ├── Maven__com_alibaba_fastjson_1_2_12.xml │ │ ├── Maven__com_fasterxml_jackson_core_jackson_annotations_2_9_0.xml │ │ ├── Maven__com_fasterxml_jackson_core_jackson_core_2_9_5.xml │ │ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_9_5.xml │ │ ├── Maven__com_google_code_findbugs_jsr305_3_0_2.xml │ │ ├── Maven__com_google_code_gson_gson_2_7.xml │ │ ├── Maven__com_google_errorprone_error_prone_annotations_2_2_0.xml │ │ ├── Maven__com_google_guava_failureaccess_1_0_1.xml │ │ ├── Maven__com_google_guava_guava_27_1_jre.xml │ │ ├── Maven__com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava.xml │ │ ├── Maven__com_google_j2objc_j2objc_annotations_1_1.xml │ │ ├── Maven__com_squareup_okhttp3_okhttp_3_10_0.xml │ │ ├── Maven__com_squareup_okio_okio_1_14_0.xml │ │ ├── Maven__com_squareup_retrofit2_adapter_rxjava_2_3_0.xml │ │ ├── Maven__com_squareup_retrofit2_converter_gson_2_3_0.xml │ │ ├── Maven__com_squareup_retrofit2_converter_scalars_2_3_0.xml │ │ ├── Maven__com_squareup_retrofit2_retrofit_2_3_0.xml │ │ ├── Maven__commons_beanutils_commons_beanutils_1_9_3.xml │ │ ├── Maven__commons_codec_commons_codec_1_12.xml │ │ ├── Maven__commons_collections_commons_collections_3_2_1.xml │ │ ├── Maven__commons_lang_commons_lang_2_6.xml │ │ ├── Maven__commons_logging_commons_logging_1_1_1.xml │ │ ├── Maven__io_netty_netty_all_4_1_36_Final.xml │ │ ├── Maven__io_reactivex_rxjava_1_3_0.xml │ │ ├── Maven__jstl_jstl_1_2.xml │ │ ├── Maven__junit_junit_4_12.xml │ │ ├── Maven__log4j_log4j_1_2_17.xml │ │ ├── Maven__net_sf_ezmorph_ezmorph_1_0_6.xml │ │ ├── Maven__net_sf_json_lib_json_lib_jdk15_2_2_3.xml │ │ ├── Maven__org_apache_commons_commons_compress_1_18.xml │ │ ├── Maven__org_apache_commons_commons_lang3_3_7.xml │ │ ├── Maven__org_checkerframework_checker_qual_2_5_2.xml │ │ ├── Maven__org_codehaus_mojo_animal_sniffer_annotations_1_17.xml │ │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ │ ├── Maven__org_projectlombok_lombok_1_18_4.xml │ │ ├── Maven__org_slf4j_slf4j_api_1_8_0_beta2.xml │ │ ├── Maven__org_slf4j_slf4j_log4j12_1_8_0_beta2.xml │ │ ├── Maven__org_springframework_spring_aop_5_1_5_RELEASE.xml │ │ ├── Maven__org_springframework_spring_beans_5_1_5_RELEASE.xml │ │ ├── Maven__org_springframework_spring_context_5_1_5_RELEASE.xml │ │ ├── Maven__org_springframework_spring_core_5_1_5_RELEASE.xml │ │ ├── Maven__org_springframework_spring_expression_5_1_5_RELEASE.xml │ │ ├── Maven__org_springframework_spring_jcl_5_1_5_RELEASE.xml │ │ └── Maven__org_springframework_spring_web_5_0_9_RELEASE.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── README.md ├── okcoin-java-sdk-api.iml ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── okcoin │ │ └── commons │ │ └── okcoin │ │ └── open │ │ └── api │ │ ├── bean │ │ ├── account │ │ │ ├── param │ │ │ │ ├── Transfer.java │ │ │ │ └── Withdraw.java │ │ │ └── result │ │ │ │ ├── Currency.java │ │ │ │ ├── Ledger.java │ │ │ │ ├── Wallet.java │ │ │ │ └── WithdrawFee.java │ │ ├── ett │ │ │ ├── param │ │ │ │ └── EttCreateOrderParam.java │ │ │ └── result │ │ │ │ ├── CursorPager.java │ │ │ │ ├── EttAccount.java │ │ │ │ ├── EttCancelOrderResult.java │ │ │ │ ├── EttConstituents.java │ │ │ │ ├── EttConstituentsResult.java │ │ │ │ ├── EttCreateOrderResult.java │ │ │ │ ├── EttLedger.java │ │ │ │ ├── EttOrder.java │ │ │ │ └── EttSettlementDefinePrice.java │ │ ├── futures │ │ │ ├── CursorPageParams.java │ │ │ ├── HttpResult.java │ │ │ ├── param │ │ │ │ ├── CancelAll.java │ │ │ │ ├── CancelFuturesOrder.java │ │ │ │ ├── CancelOrders.java │ │ │ │ ├── ChangeLiquiMode.java │ │ │ │ ├── ChangeMarginMode.java │ │ │ │ ├── ClosePosition.java │ │ │ │ ├── ClosePositions.java │ │ │ │ ├── FindOrderParam.java │ │ │ │ ├── FuturesOrderParam.java │ │ │ │ ├── Order.java │ │ │ │ ├── Orders.java │ │ │ │ └── OrdersItem.java │ │ │ └── result │ │ │ │ ├── Book.java │ │ │ │ ├── CancelFuturesOrdeResult.java │ │ │ │ ├── Currencies.java │ │ │ │ ├── EstimatedPrice.java │ │ │ │ ├── ExchangeRate.java │ │ │ │ ├── FindFuturesOrderResult.java │ │ │ │ ├── FuturesOrderResult.java │ │ │ │ ├── Holds.java │ │ │ │ ├── Index.java │ │ │ │ ├── Instruments.java │ │ │ │ ├── Liquidation.java │ │ │ │ ├── OrderResult.java │ │ │ │ ├── PriceLimit.java │ │ │ │ ├── ServerTime.java │ │ │ │ ├── Stats.java │ │ │ │ ├── Ticker.java │ │ │ │ └── Trades.java │ │ ├── other │ │ │ ├── OrderBookChecksumer.java │ │ │ ├── OrderBookDiffer.java │ │ │ ├── OrderBookItem.java │ │ │ ├── SpotOrderBook.java │ │ │ ├── SpotOrderBookDiff.java │ │ │ └── SpotOrderBookItem.java │ │ └── spot │ │ │ ├── param │ │ │ ├── FindAlgOrders.java │ │ │ ├── LoanRequestDTO.java │ │ │ ├── MarginConfigRequestDTO.java │ │ │ ├── Order.java │ │ │ ├── OrderAlgoParam.java │ │ │ ├── OrderParamDto.java │ │ │ ├── PlaceOrderParam.java │ │ │ ├── RepayRequestDTO.java │ │ │ ├── SpotMarginLeverage.java │ │ │ └── WithdrawalsParamDTO.java │ │ │ └── result │ │ │ ├── Account.java │ │ │ ├── BatchOrdersResult.java │ │ │ ├── Book.java │ │ │ ├── BorrowConfigDto.java │ │ │ ├── BorrowRequestDto.java │ │ │ ├── BorrowResult.java │ │ │ ├── Currency.java │ │ │ ├── CurrencyDto.java │ │ │ ├── Fills.java │ │ │ ├── FindAlgOrderResult.java │ │ │ ├── KlineDto.java │ │ │ ├── Ledger.java │ │ │ ├── MarginAccountDetailDto.java │ │ │ ├── MarginAccountDto.java │ │ │ ├── MarginBorrowOrderDto.java │ │ │ ├── OrderAlgoResult.java │ │ │ ├── OrderInfo.java │ │ │ ├── OrderResult.java │ │ │ ├── Product.java │ │ │ ├── RepaymentRequestDto.java │ │ │ ├── RepaymentResult.java │ │ │ ├── ResponseResult.java │ │ │ ├── ServerTimeDto.java │ │ │ ├── Ticker.java │ │ │ ├── Trade.java │ │ │ └── UserMarginBillDto.java │ │ ├── client │ │ ├── APIClient.java │ │ ├── APICredentials.java │ │ ├── APIHttpClient.java │ │ ├── APIRetrofit.java │ │ └── ApiHttp.java │ │ ├── config │ │ └── APIConfiguration.java │ │ ├── constant │ │ └── APIConstants.java │ │ ├── enums │ │ ├── AlgorithmEnum.java │ │ ├── CharsetEnum.java │ │ ├── ContentTypeEnum.java │ │ ├── HttpHeadersEnum.java │ │ ├── HttpMethodEnum.java │ │ ├── HttpStatusEnum.java │ │ └── I18nEnum.java │ │ ├── exception │ │ └── APIException.java │ │ ├── service │ │ ├── GeneralAPIService.java │ │ ├── account │ │ │ ├── AccountAPIService.java │ │ │ └── impl │ │ │ │ ├── AccountAPI.java │ │ │ │ └── AccountAPIServiceImpl.java │ │ ├── ett │ │ │ ├── EttAccountAPIService.java │ │ │ ├── EttOrderAPIService.java │ │ │ ├── EttProductAPIService.java │ │ │ └── impl │ │ │ │ ├── EttAccountAPI.java │ │ │ │ ├── EttAccountAPIServiceImpl.java │ │ │ │ ├── EttOrderAPI.java │ │ │ │ ├── EttOrderAPIServiceImpl.java │ │ │ │ ├── EttProductAPI.java │ │ │ │ └── EttProductAPIServiceImpl.java │ │ └── spot │ │ │ ├── MarginAccountAPIService.java │ │ │ ├── MarginOrderAPIService.java │ │ │ ├── SpotAccountAPIService.java │ │ │ ├── SpotOrderAPIServive.java │ │ │ ├── SpotProductAPIService.java │ │ │ └── impl │ │ │ ├── MarginAccountAPI.java │ │ │ ├── MarginAccountAPIServiceImpl.java │ │ │ ├── MarginOrderAPI.java │ │ │ ├── MarginOrderAPIServiceImpl.java │ │ │ ├── SpotAccountAPI.java │ │ │ ├── SpotAccountAPIServiceImpl.java │ │ │ ├── SpotOrderAPI.java │ │ │ ├── SpotOrderApiServiceImpl.java │ │ │ ├── SpotProductAPI.java │ │ │ └── SpotProductAPIServiceImpl.java │ │ ├── utils │ │ ├── DateUtils.java │ │ ├── HmacSHA256Base64Utils.java │ │ ├── JsonUtils.java │ │ ├── NumberUtils.java │ │ └── OrderIdUtils.java │ │ └── websocket │ │ ├── WebSocket.java │ │ ├── WebSocketAdapter.java │ │ ├── WebSocketClient.java │ │ ├── WebSocketClientHandler.java │ │ └── WebSocketListener.java │ ├── resources │ └── log4j.properties │ └── test │ └── java │ └── com │ └── okcoin │ └── commons │ └── okcoin │ └── open │ └── api │ └── test │ ├── BaseTests.java │ ├── BeanShellTest.java │ ├── DateChange.java │ ├── SignatureTest.java │ ├── WsDemo.java │ ├── account │ ├── AccountAPIBaseTests.java │ └── AccountAPITests.java │ ├── readLine.java │ ├── spot │ ├── MarginAccountAPITest.java │ ├── MarginOrderAPITest.java │ ├── SpotAPIBaseTests.java │ ├── SpotAccountAPITest.java │ ├── SpotOrderAPITest.java │ └── SpotProductAPITest.java │ └── ws │ └── spot │ ├── SpotPrivateChannelTest.java │ ├── SpotPublicChannelTest.java │ └── config │ ├── WebSocketClient.java │ └── WebSocketConfig.java ├── okcoin-node-sdk-api ├── .circleci │ └── config.yml ├── .editorconfig ├── .github │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .npmignore ├── .prettierignore ├── .vscode │ ├── debug-ts.js │ ├── launch.json │ └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── index.ts │ └── lib │ │ ├── AuthenticatedClient.ts │ │ ├── PublicClient.spec.ts │ │ ├── PublicClient.ts │ │ └── WebsocketClient.ts ├── tsconfig.json ├── tsconfig.module.json └── tslint.json ├── okcoin-php-sdk-api ├── .idea │ ├── dictionaries │ │ └── hengliu.xml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── okcoin-php-sdk-api.iml │ ├── vcs.xml │ └── workspace.xml ├── Config.php ├── README.md ├── checksumTest.php ├── composer.json ├── rapiDemo.php ├── src │ ├── AccountApi.php │ ├── ChecksumTest.php │ ├── Config.php │ ├── MarginApi.php │ ├── SpotApi.php │ ├── Utils.php │ └── Websocket.php └── wsDemo.php └── okcoin-python-sdk-api ├── example.py ├── okcoin ├── Oracl_api.py ├── __init__.py ├── account_api.py ├── client.py ├── consts.py ├── exceptions.py ├── fiat_api.py ├── lever_api.py ├── spot_api.py ├── status_api.py └── utils.py └── websocket_example.py /README.md: -------------------------------------------------------------------------------- 1 | # OKcoin Open API V3 SDK 2 | ### API Support 3 | 4 | |联系我们|Contact Us|| 5 | |---|---|---| 6 | |微信号|WeChat ID|ApiSupport| 7 | |邮 箱|E-mail|wei.cao@okcoin.net| 8 | 9 | ### Supported language: Java, Python, C#, C++, Go 10 | --- 11 | 12 | |list|language|comment| 13 | |---|---|---| 14 | |okex-java-sdk-api|Java|-| 15 | |okex-python-sdk-api|Python|-| 16 | |okex-cs-sdk-api|C#|-| 17 | |okex-cpp-sdk-api|C++|-| 18 | |okex-go-sdk-api|Go|-| 19 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Build_iOS/README.md: -------------------------------------------------------------------------------- 1 | Please consult the documentation [here](https://github.com/Microsoft/cpprestsdk/wiki/How-to-build-for-iOS) for iOS compilation. 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Build_iOS/fix_boost_building_script.patch: -------------------------------------------------------------------------------- 1 | diff --git a/boost.sh b/boost.sh 2 | index 2d5c05d..5c10ee9 100644 3 | --- a/boost.sh 4 | +++ b/boost.sh 5 | @@ -26,7 +26,7 @@ 6 | # 7 | #=============================================================================== 8 | 9 | -BOOST_LIBS="atomic chrono date_time exception filesystem program_options random signals system test thread" 10 | +BOOST_LIBS="chrono filesystem random regex system thread" 11 | 12 | BUILD_IOS= 13 | BUILD_OSX= 14 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/3.10.3/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/3.10.3/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/3.10.3/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/3.10.3/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/3.10.3/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Darwin-17.3.0") 2 | set(CMAKE_HOST_SYSTEM_NAME "Darwin") 3 | set(CMAKE_HOST_SYSTEM_VERSION "17.3.0") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") 5 | 6 | 7 | 8 | set(CMAKE_SYSTEM "Darwin-17.3.0") 9 | set(CMAKE_SYSTEM_NAME "Darwin") 10 | set(CMAKE_SYSTEM_VERSION "17.3.0") 11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64") 12 | 13 | set(CMAKE_CROSSCOMPILING "FALSE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/3.10.3/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/3.10.3/CompilerIdC/a.out -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/3.10.3/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/3.10.3/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/CMakeRuleHashes.txt: -------------------------------------------------------------------------------- 1 | # Hashes of file build rules. 2 | bdc3581cf4eafab5d4d18e9bca2c627c samples/CMakeFiles/samples 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/clion-environment.txt: -------------------------------------------------------------------------------- 1 | Options: 2 | 3 | Options: -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | subdirs("src") 8 | subdirs("tests") 9 | subdirs("samples") 10 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BingRequest/CMakeFiles/BingRequest.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "CMakeFiles/BingRequest.dir/bingrequest.cpp.o" 3 | "../../Binaries/BingRequest.pdb" 4 | "../../Binaries/BingRequest" 5 | ) 6 | 7 | # Per-language clean rules from dependency scanning. 8 | foreach(lang CXX) 9 | include(CMakeFiles/BingRequest.dir/cmake_clean_${lang}.cmake OPTIONAL) 10 | endforeach() 11 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BingRequest/CMakeFiles/BingRequest.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for BingRequest. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BingRequest/CMakeFiles/BingRequest.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 2 | CMAKE_PROGRESS_2 = 1 3 | 4 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BingRequest/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 19 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BingRequest/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/samples/BingRequest 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/samples/BingRequest 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BlackJack/BlackJack_Client/CMakeFiles/blackjackclient.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for blackjackclient. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BlackJack/BlackJack_Client/CMakeFiles/blackjackclient.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 3 2 | CMAKE_PROGRESS_2 = 3 | CMAKE_PROGRESS_3 = 4 4 | 5 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BlackJack/BlackJack_Client/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BlackJack/BlackJack_Client/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/samples/BlackJack/BlackJack_Client 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/samples/BlackJack/BlackJack_Client 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BlackJack/BlackJack_Server/CMakeFiles/blackjackserver.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for blackjackserver. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BlackJack/BlackJack_Server/CMakeFiles/blackjackserver.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 5 2 | CMAKE_PROGRESS_2 = 3 | CMAKE_PROGRESS_3 = 6 4 | CMAKE_PROGRESS_4 = 5 | CMAKE_PROGRESS_5 = 7 6 | 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BlackJack/BlackJack_Server/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BlackJack/BlackJack_Server/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/samples/BlackJack/BlackJack_Server 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/samples/BlackJack/BlackJack_Server 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/BlackJack/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 29 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/CMakeFiles/samples.dir/DependInfo.cmake: -------------------------------------------------------------------------------- 1 | # The set of languages for which implicit dependencies are needed: 2 | set(CMAKE_DEPENDS_LANGUAGES 3 | ) 4 | # The set of files for implicit dependencies of each language: 5 | 6 | # Targets to which this target links. 7 | set(CMAKE_TARGET_LINKED_INFO_FILES 8 | ) 9 | 10 | # Fortran module output directory. 11 | set(CMAKE_Fortran_TARGET_MODULE_DIR "") 12 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/CMakeFiles/samples.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "CMakeFiles/samples" 3 | ) 4 | 5 | # Per-language clean rules from dependency scanning. 6 | foreach(lang ) 7 | include(CMakeFiles/samples.dir/cmake_clean_${lang}.cmake OPTIONAL) 8 | endforeach() 9 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/CMakeFiles/samples.dir/progress.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/Oauth1Client/CMakeFiles/oauth1client.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "CMakeFiles/oauth1client.dir/Oauth1Client.cpp.o" 3 | "CMakeFiles/oauth1client.dir/stdafx.cpp.o" 4 | "../../Binaries/oauth1client.pdb" 5 | "../../Binaries/oauth1client" 6 | ) 7 | 8 | # Per-language clean rules from dependency scanning. 9 | foreach(lang CXX) 10 | include(CMakeFiles/oauth1client.dir/cmake_clean_${lang}.cmake OPTIONAL) 11 | endforeach() 12 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/Oauth1Client/CMakeFiles/oauth1client.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for oauth1client. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/Oauth1Client/CMakeFiles/oauth1client.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 60 2 | CMAKE_PROGRESS_2 = 3 | CMAKE_PROGRESS_3 = 61 4 | 5 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/Oauth1Client/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/Oauth1Client/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/samples/Oauth1Client 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/samples/Oauth1Client 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/Oauth2Client/CMakeFiles/oauth2client.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "CMakeFiles/oauth2client.dir/Oauth2Client.cpp.o" 3 | "CMakeFiles/oauth2client.dir/stdafx.cpp.o" 4 | "../../Binaries/oauth2client.pdb" 5 | "../../Binaries/oauth2client" 6 | ) 7 | 8 | # Per-language clean rules from dependency scanning. 9 | foreach(lang CXX) 10 | include(CMakeFiles/oauth2client.dir/cmake_clean_${lang}.cmake OPTIONAL) 11 | endforeach() 12 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/Oauth2Client/CMakeFiles/oauth2client.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for oauth2client. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/Oauth2Client/CMakeFiles/oauth2client.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 2 | CMAKE_PROGRESS_2 = 62 3 | CMAKE_PROGRESS_3 = 63 4 | 5 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/Oauth2Client/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/Oauth2Client/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/samples/Oauth2Client 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/samples/Oauth2Client 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/SearchFile/CMakeFiles/SearchFile.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "CMakeFiles/SearchFile.dir/searchfile.cpp.o" 3 | "../../Binaries/SearchFile.pdb" 4 | "../../Binaries/SearchFile" 5 | ) 6 | 7 | # Per-language clean rules from dependency scanning. 8 | foreach(lang CXX) 9 | include(CMakeFiles/SearchFile.dir/cmake_clean_${lang}.cmake OPTIONAL) 10 | endforeach() 11 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/SearchFile/CMakeFiles/SearchFile.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for SearchFile. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/SearchFile/CMakeFiles/SearchFile.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 2 | CMAKE_PROGRESS_2 = 2 3 | 4 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/SearchFile/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 19 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/samples/SearchFile/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/samples/SearchFile 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/samples/SearchFile 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/src/CMakeFiles/cpprest.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for cpprest. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/src/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/src/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/src 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/src 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 89 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/tests 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/tests 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | subdirs("common") 8 | subdirs("functional") 9 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 34 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/TestRunner/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/TestRunner/CMakeFiles/test_runner.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for test_runner. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/TestRunner/CMakeFiles/test_runner.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 71 2 | CMAKE_PROGRESS_2 = 3 | CMAKE_PROGRESS_3 = 72 4 | 5 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/TestRunner/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/tests/common/TestRunner 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/tests/common/TestRunner 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/UnitTestpp/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/UnitTestpp/CMakeFiles/unittestpp.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for unittestpp. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/UnitTestpp/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/tests/common/UnitTestpp 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/tests/common/UnitTestpp 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/utilities/CMakeFiles/common_utilities.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for common_utilities. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/utilities/CMakeFiles/common_utilities.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 8 2 | CMAKE_PROGRESS_2 = 3 | CMAKE_PROGRESS_3 = 9 4 | 5 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/utilities/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 32 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/common/utilities/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/tests/common/utilities 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/tests/common/utilities 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 87 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/http/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 59 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/http/client/CMakeFiles/httpclient_test.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for httpclient_test. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/http/client/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 49 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/http/listener/CMakeFiles/httplistener_test.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for httplistener_test. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/http/listener/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 45 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/http/utilities/CMakeFiles/httptest_utilities.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for httptest_utilities. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/http/utilities/CMakeFiles/httptest_utilities.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 2 | CMAKE_PROGRESS_2 = 52 3 | CMAKE_PROGRESS_3 = 53 4 | CMAKE_PROGRESS_4 = 5 | CMAKE_PROGRESS_5 = 54 6 | 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/http/utilities/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 35 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/http/utilities/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/tests/functional/http/utilities 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/tests/functional/http/utilities 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/json/CMakeFiles/json_test.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for json_test. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/json/CMakeFiles/json_test.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 55 2 | CMAKE_PROGRESS_2 = 3 | CMAKE_PROGRESS_3 = 56 4 | CMAKE_PROGRESS_4 = 5 | CMAKE_PROGRESS_5 = 57 6 | CMAKE_PROGRESS_6 = 58 7 | CMAKE_PROGRESS_7 = 8 | CMAKE_PROGRESS_8 = 59 9 | 10 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/json/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 40 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/pplx/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 38 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/pplx/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/tests/functional/pplx 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/tests/functional/pplx 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | subdirs("pplx_test") 8 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/pplx/pplx_test/CMakeFiles/pplx_test.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for pplx_test. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/pplx/pplx_test/CMakeFiles/pplx_test.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 2 | CMAKE_PROGRESS_2 = 64 3 | CMAKE_PROGRESS_3 = 65 4 | CMAKE_PROGRESS_4 = 5 | CMAKE_PROGRESS_5 = 66 6 | 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/pplx/pplx_test/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 38 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/streams/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 39 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/streams/CMakeFiles/streams_test.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for streams_test. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/streams/CMakeFiles/streams_test.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 2 | CMAKE_PROGRESS_2 = 67 3 | CMAKE_PROGRESS_3 = 68 4 | CMAKE_PROGRESS_4 = 5 | CMAKE_PROGRESS_5 = 69 6 | CMAKE_PROGRESS_6 = 70 7 | CMAKE_PROGRESS_7 = 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/uri/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 41 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/uri/CMakeFiles/uri_test.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for uri_test. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/uri/CMakeFiles/uri_test.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 85 2 | CMAKE_PROGRESS_2 = 3 | CMAKE_PROGRESS_3 = 86 4 | CMAKE_PROGRESS_4 = 5 | CMAKE_PROGRESS_5 = 87 6 | CMAKE_PROGRESS_6 = 88 7 | CMAKE_PROGRESS_7 = 8 | CMAKE_PROGRESS_8 = 89 9 | CMAKE_PROGRESS_9 = 90 10 | CMAKE_PROGRESS_10 = 11 | 12 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/utils/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 39 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/utils/CMakeFiles/utils_test.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for utils_test. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/utils/CMakeFiles/utils_test.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 91 2 | CMAKE_PROGRESS_2 = 3 | CMAKE_PROGRESS_3 = 92 4 | CMAKE_PROGRESS_4 = 93 5 | CMAKE_PROGRESS_5 = 6 | CMAKE_PROGRESS_6 = 94 7 | 8 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/websockets/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 41 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/websockets/CMakeFiles/websocketsclient_test.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for websocketsclient_test. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/websockets/CMakeFiles/websocketsclient_test.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 94 2 | CMAKE_PROGRESS_2 = 95 3 | CMAKE_PROGRESS_3 = 4 | CMAKE_PROGRESS_4 = 96 5 | CMAKE_PROGRESS_5 = 6 | CMAKE_PROGRESS_6 = 97 7 | CMAKE_PROGRESS_7 = 98 8 | CMAKE_PROGRESS_8 = 9 | 10 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/websockets/CMakeFiles/websockettest_utilities.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for websockettest_utilities. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/websockets/CMakeFiles/websockettest_utilities.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 99 2 | CMAKE_PROGRESS_2 = 100 3 | 4 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/websockets/CTestTestfile.cmake: -------------------------------------------------------------------------------- 1 | # CMake generated Testfile for 2 | # Source directory: /Users/oak/go/src/github.com/cpprestsdk/Release/tests/functional/websockets 3 | # Build directory: /Users/oak/go/src/github.com/cpprestsdk/Release/cmake-build-debug/tests/functional/websockets 4 | # 5 | # This file includes the relevant testing commands required for 6 | # testing this directory and lists subdirectories to be tested as well. 7 | subdirs("client") 8 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/websockets/client/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 41 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/websockets/client/CMakeFiles/websocketclient_test.dir/depend.make: -------------------------------------------------------------------------------- 1 | # Empty dependencies file for websocketclient_test. 2 | # This may be replaced when dependencies are built. 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/cmake-build-debug/tests/functional/websockets/client/CMakeFiles/websocketclient_test.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 95 2 | CMAKE_PROGRESS_2 = 3 | CMAKE_PROGRESS_3 = 96 4 | CMAKE_PROGRESS_4 = 5 | CMAKE_PROGRESS_5 = 97 6 | CMAKE_PROGRESS_6 = 98 7 | CMAKE_PROGRESS_7 = 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/include/cpprest/details/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by Resource.rc 4 | 5 | // Next default values for new objects 6 | // 7 | #ifdef APSTUDIO_INVOKED 8 | #ifndef APSTUDIO_READONLY_SYMBOLS 9 | #define _APS_NEXT_RESOURCE_VALUE 101 10 | #define _APS_NEXT_COMMAND_VALUE 40001 11 | #define _APS_NEXT_CONTROL_VALUE 1001 12 | #define _APS_NEXT_SYMED_VALUE 101 13 | #endif 14 | #endif 15 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/include/cpprest/version.h: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | * 5 | */ 6 | #define CPPREST_VERSION_REVISION 0 7 | #define CPPREST_VERSION_MINOR 9 8 | #define CPPREST_VERSION_MAJOR 2 9 | 10 | #define CPPREST_VERSION (CPPREST_VERSION_MAJOR*100000+CPPREST_VERSION_MINOR*100+CPPREST_VERSION_REVISION) 11 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/examples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | file (GLOB SDIRS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *) 2 | foreach (SUBDIR ${SDIRS}) 3 | if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/CMakeLists.txt") 4 | add_subdirectory (${SUBDIR}) 5 | endif () 6 | endforeach () 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/examples/debug_server/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | file (GLOB SOURCE_FILES *.cpp) 3 | file (GLOB HEADER_FILES *.hpp) 4 | 5 | init_target (debug_server) 6 | 7 | build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) 8 | 9 | link_boost () 10 | final_target () 11 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/examples/echo_server/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | file (GLOB SOURCE_FILES *.cpp) 3 | file (GLOB HEADER_FILES *.hpp) 4 | 5 | init_target (echo_server) 6 | 7 | build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) 8 | 9 | link_boost () 10 | final_target () 11 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/examples/echo_server_both/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | file (GLOB SOURCE_FILES *.cpp) 3 | file (GLOB HEADER_FILES *.hpp) 4 | 5 | 6 | if (OPENSSL_FOUND) 7 | 8 | init_target (echo_server_both) 9 | 10 | build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) 11 | 12 | link_boost () 13 | link_openssl() 14 | final_target () 15 | endif() 16 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/examples/echo_server_tls/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | file (GLOB SOURCE_FILES *.cpp) 3 | file (GLOB HEADER_FILES *.hpp) 4 | 5 | 6 | if (OPENSSL_FOUND) 7 | 8 | init_target (echo_server_tls) 9 | 10 | build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) 11 | 12 | link_boost () 13 | link_openssl() 14 | final_target () 15 | endif() 16 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/examples/print_server/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | file (GLOB SOURCE_FILES *.cpp) 3 | file (GLOB HEADER_FILES *.hpp) 4 | 5 | init_target (print_server) 6 | 7 | build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) 8 | 9 | link_boost () 10 | final_target () 11 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/examples/sip_client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | file (GLOB SOURCE_FILES *.cpp) 3 | file (GLOB HEADER_FILES *.hpp) 4 | 5 | init_target (sip_client) 6 | 7 | build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) 8 | 9 | link_boost () 10 | final_target () 11 | 12 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/examples/telemetry_client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | file (GLOB SOURCE_FILES *.cpp) 3 | file (GLOB HEADER_FILES *.hpp) 4 | 5 | init_target (telemetry_client) 6 | 7 | build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) 8 | 9 | link_boost () 10 | final_target () 11 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/examples/telemetry_server/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | file (GLOB SOURCE_FILES *.cpp) 3 | file (GLOB HEADER_FILES *.hpp) 4 | 5 | init_target (telemetry_server) 6 | 7 | build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) 8 | 9 | link_boost () 10 | final_target () 11 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/examples/testee_client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | file (GLOB SOURCE_FILES *.cpp) 3 | file (GLOB HEADER_FILES *.hpp) 4 | 5 | init_target (testee_client) 6 | 7 | build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) 8 | 9 | link_boost () 10 | final_target () 11 | 12 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/examples/utility_client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | file (GLOB SOURCE_FILES *.cpp) 3 | file (GLOB HEADER_FILES *.hpp) 4 | 5 | init_target (utility_client) 6 | 7 | build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) 8 | 9 | link_boost () 10 | final_target () 11 | 12 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/tutorials/chat_tutorial/chat_tutorial.md: -------------------------------------------------------------------------------- 1 | Chat Tutorial 2 | ============= 3 | 4 | Goals of this tutorial: 5 | - Implement a realtime websocket chat server 6 | 7 | 8 | Server 9 | - Nicknames 10 | - Channels 11 | - Subprotocol 12 | - Origin restrictions 13 | - HTTP statistics page 14 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/websocketpp-config.cmake.in: -------------------------------------------------------------------------------- 1 | # - Config file for the websocketpp package 2 | # It defines the following variables 3 | # WEBSOCKETPP_FOUND - indicates that the module was found 4 | # WEBSOCKETPP_INCLUDE_DIR - include directories 5 | 6 | set(WEBSOCKETPP_FOUND TRUE) 7 | set(WEBSOCKETPP_INCLUDE_DIR "@INSTALL_INCLUDE_DIR@") 8 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/websocketpp-configVersion.cmake.in: -------------------------------------------------------------------------------- 1 | set(PACKAGE_VERSION "@WEBSOCKETPP_VERSION@") 2 | 3 | # Check whether the requested PACKAGE_FIND_VERSION is compatible 4 | if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") 5 | set(PACKAGE_VERSION_COMPATIBLE FALSE) 6 | else() 7 | set(PACKAGE_VERSION_COMPATIBLE TRUE) 8 | if ("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") 9 | set(PACKAGE_VERSION_EXACT TRUE) 10 | endif() 11 | endif() 12 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/libs/websocketpp/websocketpp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | init_target("websocketpp") 2 | final_target () 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BingRequest/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) 2 | add_executable(BingRequest bingrequest.cpp) 3 | target_link_libraries(BingRequest ${Casablanca_LIBRARIES}) 4 | endif() -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_Client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (UNIX) 2 | add_definitions(-Wno-switch) 3 | endif() 4 | 5 | add_executable(blackjackclient 6 | BlackJackClient.cpp 7 | stdafx.cpp 8 | ) 9 | 10 | target_link_libraries(blackjackclient ${Casablanca_LIBRARIES}) 11 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_Server/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (UNIX) 2 | add_definitions(-Wno-sign-compare -Wno-enum-compare) 3 | endif() 4 | 5 | add_executable(blackjackserver 6 | BlackJack_Server.cpp 7 | Dealer.cpp 8 | stdafx.cpp 9 | Table.cpp 10 | ) 11 | 12 | target_link_libraries(blackjackserver ${Casablanca_LIBRARIES}) 13 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/Logo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/SmallLogo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/SplashScreen.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/StoreLogo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/BlackJack_UIClient_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/BlackJack_UIClient_TemporaryKey.pfx -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Cards.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Cards.PNG -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/BlackJack/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) 2 | add_subdirectory(BlackJack_Server) 3 | add_subdirectory(BlackJack_Client) 4 | else() 5 | # TODO: add BlackJack_UIClient 6 | endif() 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(SearchFile) 2 | add_subdirectory(BingRequest) 3 | add_subdirectory(BlackJack) 4 | add_subdirectory(Oauth1Client) 5 | add_subdirectory(Oauth2Client) 6 | 7 | add_custom_target(samples 8 | DEPENDS SearchFile BingRequest blackjackclient blackjackserver oauth1client oauth2client 9 | ) -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/CasaLens/image/bing-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/CasaLens/image/bing-logo.jpg -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/CasaLens/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/CasaLens/image/logo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/CasaLens/image/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/CasaLens/image/wall.jpg -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/FacebookDemo/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/FacebookDemo/Assets/Logo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/FacebookDemo/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/FacebookDemo/Assets/SmallLogo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/FacebookDemo/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/FacebookDemo/Assets/SplashScreen.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/FacebookDemo/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/FacebookDemo/Assets/StoreLogo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/FacebookDemo/FacebookDemo_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/FacebookDemo/FacebookDemo_TemporaryKey.pfx -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/Assets/Logo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/Assets/SmallLogo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/Assets/SplashScreen.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/Assets/StoreLogo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/OAuth2Live_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/OAuth2Live_TemporaryKey.pfx -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/OAuth2Live/pch.h: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | * 5 | ****/ 6 | 7 | #pragma once 8 | 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include "App.xaml.h" 15 | #include "MainPage.xaml.h" 16 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/Oauth1Client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) 2 | add_executable(oauth1client 3 | Oauth1Client.cpp 4 | stdafx.cpp 5 | ) 6 | 7 | target_link_libraries(oauth1client ${Casablanca_LIBRARIES}) 8 | endif() -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/Oauth2Client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) 2 | add_executable(oauth2client 3 | Oauth2Client.cpp 4 | stdafx.cpp 5 | ) 6 | 7 | target_link_libraries(oauth2client ${Casablanca_LIBRARIES}) 8 | endif() -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/SearchFile/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) 2 | add_executable(SearchFile searchfile.cpp) 3 | target_link_libraries(SearchFile ${Casablanca_LIBRARIES}) 4 | endif() 5 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/Logo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/SmallLogo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/SplashScreen.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/StoreLogo.png -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/WindowsLiveAuth_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/WindowsLiveAuth_TemporaryKey.pfx -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/pch.cpp: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | ****/ 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/samples/WindowsLiveAuth/pch.h: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | ****/ 5 | 6 | #pragma once 7 | 8 | #include 9 | #include "App.xaml.h" 10 | #include "MainPage.xaml.h" 11 | #include "live_connect.h" -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/src/utilities/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/src/utilities/Resource.rc -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(UnitTestpp_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/common/UnitTestpp) 2 | set(Utilities_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/common/utilities/include) 3 | 4 | include_directories (${UnitTestpp_INCLUDE_DIR} ${Utilities_INCLUDE_DIR}) 5 | 6 | add_subdirectory(common) 7 | add_subdirectory(functional) 8 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/common/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(utilities) 2 | add_subdirectory(UnitTestpp) 3 | add_subdirectory(TestRunner) 4 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/project.properties: -------------------------------------------------------------------------------- 1 | # Project target 2 | target=$(androidapilevel) 3 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | TestRunner.android.Packaging 4 | 5 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/common/utilities/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include_directories(include) 2 | 3 | if(WIN32) 4 | add_definitions(-DCOMMONUTILITIES_EXPORTS) 5 | endif() 6 | 7 | add_library(common_utilities 8 | os_utilities.cpp 9 | stdafx.cpp 10 | ) 11 | 12 | target_link_libraries(common_utilities 13 | ${Casablanca_LIBRARY} 14 | unittestpp 15 | ${Boost_SYSTEM_LIBRARY} 16 | ${Boost_THREAD_LIBRARY} 17 | ) 18 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(http) 2 | add_subdirectory(json) 3 | add_subdirectory(pplx) 4 | add_subdirectory(streams) 5 | add_subdirectory(uri) 6 | add_subdirectory(utils) 7 | add_subdirectory(websockets) -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/http/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(utilities) 2 | add_subdirectory(client) 3 | add_subdirectory(listener) 4 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/http/client/AuthListener/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/http/client/stdafx.cpp: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | * 5 | * =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ 6 | **/ 7 | // stdafx.cpp : 8 | // Include the standard header and generate the precompiled header. 9 | 10 | #include "stdafx.h" -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/http/client/vs14.android/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/http/listener/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : 2 | // Include the standard header and generate the precompiled header. 3 | 4 | #include "stdafx.h" -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/http/utilities/stdafx.cpp: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | * 5 | * =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ 6 | **/ 7 | // stdafx.cpp : 8 | // Include the standard header and generate the precompiled header. 9 | 10 | #include "stdafx.h" -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/json/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (SOURCES 2 | construction_tests.cpp 3 | negative_parsing_tests.cpp 4 | parsing_tests.cpp 5 | to_as_and_operators_tests.cpp 6 | iterator_tests.cpp 7 | json_numbers_tests.cpp 8 | ) 9 | if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) 10 | list(APPEND SOURCES fuzz_tests.cpp) 11 | endif() 12 | 13 | add_casablanca_test(json_test SOURCES) 14 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/json/stdafx.cpp: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | * 5 | * =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ 6 | **/ 7 | // stdafx.cpp : 8 | // Include the standard header and generate the precompiled header. 9 | 10 | #include "stdafx.h" -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/misc/atl_headers/header_test.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/misc/atl_headers/header_test.rc -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/pplx/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(pplx_test) 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/pplx/dirs.proj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/pplx/pplx_test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(SOURCES 2 | pplx_op_test.cpp 3 | pplx_task_options.cpp 4 | pplxtask_tests.cpp 5 | stdafx.cpp 6 | ) 7 | 8 | add_casablanca_test(pplx_test SOURCES) 9 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/pplx/pplx_test/stdafx.cpp: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | * 5 | * =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ 6 | **/ 7 | // stdafx.cpp : 8 | // Include the standard header and generate the precompiled header. 9 | 10 | #include "stdafx.h" -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/streams/stdafx.cpp: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | * 5 | * =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ 6 | **/ 7 | // stdafx.cpp : 8 | // Include the standard header and generate the precompiled header. 9 | 10 | 11 | #include "stdafx.h" -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/uri/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(SOURCES 2 | accessor_tests.cpp 3 | combining_tests.cpp 4 | constructor_tests.cpp 5 | conversions_tests.cpp 6 | diagnostic_tests.cpp 7 | encoding_tests.cpp 8 | operator_tests.cpp 9 | splitting_tests.cpp 10 | uri_builder_tests.cpp 11 | ) 12 | 13 | add_casablanca_test(${LIB}uri_test SOURCES) 14 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/uri/stdafx.cpp: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | * 5 | * =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ 6 | **/ 7 | 8 | // stdafx.cpp : 9 | // Include the standard header and generate the precompiled header. 10 | 11 | #include "stdafx.h" -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/utils/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(SOURCES 2 | datetime.cpp 3 | base64.cpp 4 | strings.cpp 5 | macro_test.cpp 6 | nonce_generator_tests.cpp 7 | ) 8 | 9 | add_casablanca_test(${LIB}utils_test SOURCES) 10 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/utils/stdafx.cpp: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | * 5 | * =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ 6 | **/ 7 | 8 | // stdafx.cpp : 9 | // Include the standard header and generate the precompiled header. 10 | 11 | #include "stdafx.h" -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/websockets/client/stdafx.cpp: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | * 5 | * =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ 6 | **/ 7 | // stdafx.cpp : 8 | // Include the standard header and generate the precompiled header. 9 | 10 | #include "stdafx.h" -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/websockets/utilities/stdafx.cpp: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | * 5 | * =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ 6 | **/ 7 | // stdafx.cpp : 8 | // Include the standard header and generate the precompiled header. 9 | 10 | #include "stdafx.h" -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/websockets/utilities/vs12/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/Release/tests/functional/websockets/utilities/vs14.android/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cpp-sdk-api/libs/cpprestsdk/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/libs/cpprestsdk/build.root: -------------------------------------------------------------------------------- 1 | Marker file indicating root of build system. 2 | -------------------------------------------------------------------------------- /okcoin-cpp-sdk-api/source/algo_hmac.h: -------------------------------------------------------------------------------- 1 | #ifndef _ALGO_HMAC_H_ 2 | #define _ALGO_HMAC_H_ 3 | 4 | int HmacEncode(const char * algo, 5 | const char * key, unsigned int key_length, 6 | const char * input, unsigned int input_length, 7 | unsigned char * &output, unsigned int &output_length); 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/.vs/OKCoin/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/.vs/OKCoin/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/.vs/OKCoin/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/.vs/OKCoin/v16/.suo -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/.vs/OKCoin/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/.vs/OKCoin/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/.vs/OKCoin/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/.vs/OKCoin/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/.vs/OKCoinSDK/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/.vs/OKCoinSDK/v16/.suo -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/.vs/OKCoinSDK/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/.vs/OKCoinSDK/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/.vs/OKCoinSDK/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/.vs/OKCoinSDK/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/.vs/OKExSDK/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/.vs/OKExSDK/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/ErrorResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models 6 | { 7 | public class ErrorResult 8 | { 9 | 10 | public int code { get; set; } 11 | public string message { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Ett/ConstituentsDetail.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Ett 6 | { 7 | public class ConstituentsDetail 8 | { 9 | /// 10 | /// 每份ett包含币种成分数量 11 | /// 12 | public decimal amount { get; set; } 13 | /// 14 | /// ett包含币种成分 15 | /// 16 | public string currency { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Ett/DefinePrice.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Ett 6 | { 7 | public class DefinePrice 8 | { 9 | /// 10 | /// 该基金产品清算时间 11 | /// 12 | public DateTime date { get; set; } 13 | /// 14 | /// 该基金产品清算时价格 15 | /// 16 | public decimal price { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Ett/EttLedgerDetail.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Ett 6 | { 7 | public class EttLedgerDetail 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Futures/Book.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class Book 8 | { 9 | public List> asks { get; set; } 10 | public List> bids { get; set; } 11 | public DateTime timestamp { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Futures/LedgerDetails.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class LedgerDetails 8 | { 9 | /// 10 | /// 订单ID 11 | /// 12 | public long order_id { get; set; } 13 | /// 14 | /// 合约ID,如BTC-USD-180213 15 | /// 16 | public string instrument_id { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Futures/Leverage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class Leverage 8 | { 9 | /// 10 | /// 账户类型:全仓 crossed 逐仓 fixed 11 | /// 12 | public string margin_mode { get; set; } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Futures/LeverageCrossed.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class LeverageCrossed : Leverage 8 | { 9 | /// 10 | /// 币种,如:btc 11 | /// 12 | public string currency { get; set; } 13 | /// 14 | /// 杠杆倍数 15 | /// 16 | public int leverage { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Futures/OrderListResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class OrderListResult 8 | { 9 | public bool result { get; set; } 10 | public List order_info { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Futures/PositionResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class PositionResult 8 | { 9 | public bool result { get; set; } 10 | public List holding { get; set; } 11 | /// 12 | /// 账户类型:全仓 crossed, 逐仓 fixed 13 | /// 14 | public string margin_mode { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Futures/Rate.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class Rate 8 | { 9 | /// 10 | /// 合约ID,如BTC-USD-180213 11 | /// 12 | public string instrument_id { get; set; } 13 | /// 14 | /// 汇率 15 | /// 16 | public decimal rate { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/General/ServerTime.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.General 6 | { 7 | public class ServerTime 8 | { 9 | public string Iso { get; set; } 10 | 11 | public string Epoch { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Margin/BorrowResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Margin 6 | { 7 | public class BorrowResult 8 | { 9 | /// 10 | /// 借币记录ID 11 | /// 12 | public long borrow_id { get; set; } 13 | /// 14 | /// 结果 15 | /// 16 | public bool result { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Margin/MarginLedgerDetail.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Margin 6 | { 7 | public class MarginLedgerDetail 8 | { 9 | /// 10 | /// 交易的ID 11 | /// 12 | public long order_id { get; set; } 13 | /// 14 | /// 币对 15 | /// 16 | public string instrument_id { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Margin/MarginOrderLimit.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Margin 6 | { 7 | public class MarginOrderLimit : MarginOrder 8 | { 9 | /// 10 | /// 价格 11 | /// 12 | public string price { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Margin/MarginOrderMarket.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Margin 6 | { 7 | public class MarginOrderMarket : MarginOrder 8 | { 9 | /// 10 | /// 买入金额,市价买入是必填notional 11 | /// 12 | public string notional { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Margin/RepaymentResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Margin 6 | { 7 | public class RepaymentResult 8 | { 9 | /// 10 | /// 还币记录ID 11 | /// 12 | public long repayment_id { get; set; } 13 | /// 14 | /// 结果 15 | /// 16 | public bool result { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Spot/SpotBook.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Spot 6 | { 7 | public class SpotBook 8 | { 9 | public List> bids { get; set; } 10 | public List> asks { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Spot/SpotLedgerDetail.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Spot 6 | { 7 | public class SpotLedgerDetail 8 | { 9 | /// 10 | /// 交易的ID 11 | /// 12 | public long order_id { get; set; } 13 | /// 14 | /// 币对 15 | /// 16 | public string instrument_id { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Spot/SpotOrderLimit.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Spot 6 | { 7 | public class SpotOrderLimit : SpotOrder 8 | { 9 | /// 10 | /// 价格 11 | /// 12 | public string price { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Spot/SpotOrderMarket.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Spot 6 | { 7 | public class SpotOrderMarket : SpotOrder 8 | { 9 | /// 10 | /// 买入金额,市价买入是必填notional 11 | /// 12 | public string notional { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Swap/AccountResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace OKCoinSDK.Models.Swap 7 | { 8 | public class AccountResult 9 | { 10 | public Account info { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Swap/AccountsResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace OKCoinSDK.Models.Swap 7 | { 8 | public class AccountsResult 9 | { 10 | public List info { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Swap/CancelOrderResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Swap 6 | { 7 | public class CancelOrderResult 8 | { 9 | /// 10 | /// 订单ID 11 | /// 12 | public string order_id { get; set; } 13 | /// 14 | /// 撤单申请结果 15 | /// 16 | public string result { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Swap/Depth.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Swap 6 | { 7 | public class Depth 8 | { 9 | public List> asks { get; set; } 10 | public List> bids { get; set; } 11 | public DateTime timestamp { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Swap/OrderListResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Swap 6 | { 7 | public class OrderListResult 8 | { 9 | public bool result { get; set; } 10 | public List order_info { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/Models/Swap/PositionResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Swap 6 | { 7 | public class PositionResult 8 | { 9 | public List holding { get; set; } 10 | /// 11 | /// 账户类型:全仓 crossed, 逐仓 fixed 12 | /// 13 | public string margin_mode { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/OKCoinSDK.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | netstandard2.0 5 | OKCoinSDKTest 6 | 1.0.1 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/WebSocketor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDK/WebSocketor.cs -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/bin/Debug/netstandard2.0/OKExSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDK/bin/Debug/netstandard2.0/OKExSDK.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/bin/Debug/netstandard2.0/OKExSDK.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDK/bin/Debug/netstandard2.0/OKExSDK.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKCoinSDK.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1a27801f0d6a9ef96602ab8d5f627b30a2cdb821 2 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKCoinSDK.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKCoinSDK.assets.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKCoinSDK.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKCoinSDK.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKExSDK.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1b7d57d57d87b4263593c41922252503b0ef0168 2 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKExSDK.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKExSDK.assets.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKExSDK.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKExSDK.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKExSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKExSDK.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKExSDK.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDK/obj/Debug/netstandard2.0/OKExSDK.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/obj/OKCoinSDK.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "KtwEBGO2ojTpZiB1iFtq7uF/N5yJInoTJYWfbZnjtplIpaXu07+4p14yi/gKFc+BwoAUc6A6KarLtFWPfLrFzg==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDK/obj/OKExSDK.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "cL4DmztI4F98A0VF7X3Bvpy8KdWNXFJ12/+WlgwdrY8eT7Jl8rtuPixSD37+PAA+adl2rzcf/A1BG6dUZo6luw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/ErrorResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models 6 | { 7 | public class ErrorResult 8 | { 9 | 10 | public int code { get; set; } 11 | public string message { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Ett/DefinePrice.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Ett 6 | { 7 | public class DefinePrice 8 | { 9 | /// 10 | /// 该基金产品清算时间 11 | /// 12 | public DateTime date { get; set; } 13 | /// 14 | /// 该基金产品清算时价格 15 | /// 16 | public decimal price { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Ett/EttLedgerDetail.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Ett 6 | { 7 | public class EttLedgerDetail 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Futures/Book.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class Book 8 | { 9 | public List> asks { get; set; } 10 | public List> bids { get; set; } 11 | public DateTime timestamp { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Futures/Leverage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class Leverage 8 | { 9 | /// 10 | /// 账户类型:全仓 crossed 逐仓 fixed 11 | /// 12 | public string margin_mode { get; set; } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Futures/OrderListResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class OrderListResult 8 | { 9 | public bool result { get; set; } 10 | public List order_info { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Futures/PositionResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class PositionResult 8 | { 9 | public bool result { get; set; } 10 | public List holding { get; set; } 11 | /// 12 | /// 账户类型:全仓 crossed, 逐仓 fixed 13 | /// 14 | public string margin_mode { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Futures/Rate.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Futures 6 | { 7 | public class Rate 8 | { 9 | /// 10 | /// 合约ID,如BTC-USD-180213 11 | /// 12 | public string instrument_id { get; set; } 13 | /// 14 | /// 汇率 15 | /// 16 | public decimal rate { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/General/ServerTime.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.General 6 | { 7 | public class ServerTime 8 | { 9 | public string Iso { get; set; } 10 | 11 | public string Epoch { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Margin/BorrowResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Margin 6 | { 7 | public class BorrowResult 8 | { 9 | /// 10 | /// 借币记录ID 11 | /// 12 | public long borrow_id { get; set; } 13 | /// 14 | /// 结果 15 | /// 16 | public bool result { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Margin/MarginLedgerDetail.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Margin 6 | { 7 | public class MarginLedgerDetail 8 | { 9 | /// 10 | /// 交易的ID 11 | /// 12 | public long order_id { get; set; } 13 | /// 14 | /// 币对 15 | /// 16 | public string instrument_id { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Margin/MarginOrderLimit.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Margin 6 | { 7 | public class MarginOrderLimit : MarginOrder 8 | { 9 | /// 10 | /// 价格 11 | /// 12 | public string price { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Margin/MarginOrderMarket.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Margin 6 | { 7 | public class MarginOrderMarket : MarginOrder 8 | { 9 | /// 10 | /// 买入金额,市价买入是必填notional 11 | /// 12 | public string notional { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Margin/RepaymentResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Margin 6 | { 7 | public class RepaymentResult 8 | { 9 | /// 10 | /// 还币记录ID 11 | /// 12 | public long repayment_id { get; set; } 13 | /// 14 | /// 结果 15 | /// 16 | public bool result { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Spot/SpotBook.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Spot 6 | { 7 | public class SpotBook 8 | { 9 | public List> bids { get; set; } 10 | public List> asks { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Spot/SpotLedgerDetail.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Spot 6 | { 7 | public class SpotLedgerDetail 8 | { 9 | /// 10 | /// 交易的ID 11 | /// 12 | public long order_id { get; set; } 13 | /// 14 | /// 币对 15 | /// 16 | public string instrument_id { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Spot/SpotOrderLimit.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Spot 6 | { 7 | public class SpotOrderLimit : SpotOrder 8 | { 9 | /// 10 | /// 价格 11 | /// 12 | public string price { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Spot/SpotOrderMarket.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Spot 6 | { 7 | public class SpotOrderMarket : SpotOrder 8 | { 9 | /// 10 | /// 买入金额,市价买入是必填notional 11 | /// 12 | public string notional { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Swap/AccountResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace OKCoinSDK.Models.Swap 7 | { 8 | public class AccountResult 9 | { 10 | public Account info { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Swap/AccountsResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace OKCoinSDK.Models.Swap 7 | { 8 | public class AccountsResult 9 | { 10 | public List info { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Swap/CancelOrderResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Swap 6 | { 7 | public class CancelOrderResult 8 | { 9 | /// 10 | /// 订单ID 11 | /// 12 | public string order_id { get; set; } 13 | /// 14 | /// 撤单申请结果 15 | /// 16 | public string result { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Swap/Depth.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Swap 6 | { 7 | public class Depth 8 | { 9 | public List> asks { get; set; } 10 | public List> bids { get; set; } 11 | public DateTime timestamp { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Swap/OrderListResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Swap 6 | { 7 | public class OrderListResult 8 | { 9 | public bool result { get; set; } 10 | public List order_info { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/Models/Swap/PositionResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace OKCoinSDK.Models.Swap 6 | { 7 | public class PositionResult 8 | { 9 | public List holding { get; set; } 10 | /// 11 | /// 账户类型:全仓 crossed, 逐仓 fixed 12 | /// 13 | public string margin_mode { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/DotNetZip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/DotNetZip.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/DotNetZip.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/DotNetZip.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/Microsoft.Threading.Tasks.Extensions.Desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/Microsoft.Threading.Tasks.Extensions.Desktop.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/OKExSDKLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/OKExSDKLibrary.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/OKExSDKLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/OKExSDKLibrary.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/bin/Debug/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Net.Http.Primitives 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKCoinSDKLibrary.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKCoinSDKLibrary.csproj.CopyComplete -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKCoinSDKLibrary.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKCoinSDKLibrary.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKExSDKLibrary.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKExSDKLibrary.csproj.CopyComplete -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKExSDKLibrary.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKExSDKLibrary.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKExSDKLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKExSDKLibrary.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKExSDKLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/OKExSDKLibrary/obj/Debug/OKExSDKLibrary.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace SampleCS 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/KeyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace SampleCS 8 | { 9 | public class KeyInfo 10 | { 11 | public string api_key { get; set; } 12 | public string secret { get; set; } 13 | public string passphrase { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/SampleCS.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | false 5 | 6 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/DotNetZip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/DotNetZip.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/DotNetZip.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/DotNetZip.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/Microsoft.Threading.Tasks.Extensions.Desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/Microsoft.Threading.Tasks.Extensions.Desktop.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/OKExSDKLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/OKExSDKLibrary.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/OKExSDKLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/OKExSDKLibrary.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/SampleCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/SampleCS.exe -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/SampleCS.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/SampleCS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/SampleCS.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Net.Http.Primitives 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/bin/Debug/app.publish/SampleCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/bin/Debug/app.publish/SampleCS.exe -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.Properties.Resources.resources -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.csproj.CopyComplete -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.exe -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.g.resources -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | SampleCS 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\公共存储区\okcoin-cs-sdk-api\SampleCS\obj\Debug\ 8 | SampleCS 9 | none 10 | false 11 | DEBUG;TRACE 12 | D:\公共存储区\okcoin-cs-sdk-api\SampleCS\App.xaml 13 | 11151548125 14 | 15 | 71522376420 16 | 72-796539506 17 | MainWindow.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | SampleCS 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\ProgramData\Project\open-api-v3-sdk\okex-cs-sdk-api\SampleCS\obj\Debug\ 8 | SampleCS 9 | none 10 | false 11 | DEBUG;TRACE 12 | D:\ProgramData\Project\open-api-v3-sdk\okex-cs-sdk-api\SampleCS\App.xaml 13 | 11151548125 14 | 15 | 8-554274152 16 | 722082732786 17 | MainWindow.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FD:\ProgramData\Project\open-api-v3-sdk\okex-cs-sdk-api\SampleCS\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/SampleCS_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FD:\公共存储区\okcoin-cs-sdk-api\SampleCS\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/SampleCS/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/SampleCS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/.signature.p7s -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/DotNetZip.1.13.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/DotNetZip.1.13.4.nupkg -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/lib/net40/DotNetZip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/lib/net40/DotNetZip.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/lib/net40/DotNetZip.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/lib/net40/DotNetZip.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/lib/netstandard2.0/DotNetZip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/lib/netstandard2.0/DotNetZip.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/lib/netstandard2.0/DotNetZip.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/DotNetZip.1.13.4/lib/netstandard2.0/DotNetZip.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/.signature.p7s -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/HtmlAgilityPack.1.11.16.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/HtmlAgilityPack.1.11.16.nupkg -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net35/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net35/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net35/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net35/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net40-client/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net40-client/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net40-client/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net40-client/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net40/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net40/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net40/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net40/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net45/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net45/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net45/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/Net45/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/NetCore45/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/NetCore45/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/NetCore45/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/NetCore45/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard1.3/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard1.3/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard1.3/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard1.3/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard1.6/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard1.6/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard1.6/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard1.6/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard2.0/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard2.0/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard2.0/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/netstandard2.0/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/uap10.0/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/uap10.0/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/uap10.0/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/uap10.0/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/uap10.0/HtmlAgilityPack.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/HtmlAgilityPack.1.11.16/lib/uap10.0/HtmlAgilityPack.pri -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/.signature.p7s -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/Microsoft.Bcl.1.1.10.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/Microsoft.Bcl.1.1.10.nupkg -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/Xamarin.iOS10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/Xamarin.iOS10/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/monoandroid/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/monoandroid/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/monotouch/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/monotouch/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/net40/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/net40/System.IO.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/net40/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Runtime.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/net40/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/net40/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/net45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/net45/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.IO.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Runtime.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.IO.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.Runtime.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.IO.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Runtime.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net45+win8+wp8+wpa81/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net45+win8+wpa81/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net451+win81+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net451+win81+wpa81/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net451+win81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-net451+win81/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-win81+wp81+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/portable-win81+wp81+wpa81/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.IO.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Runtime.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.IO.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Runtime.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.IO.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Runtime.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/win8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/win8/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/wp8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/wp8/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.1.1.10/lib/wpa81/_._ -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/.signature.p7s -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/Microsoft.Bcl.Async.1.0.168.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/Microsoft.Bcl.Async.1.0.168.nupkg -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.Extensions.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.Extensions.Silverlight.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/win8/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/win8/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/win8/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/win8/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.Extensions.Phone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.Extensions.Phone.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/wpa81/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/wpa81/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/wpa81/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Async.1.0.168/lib/wpa81/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Build.1.0.21/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Build.1.0.21/.signature.p7s -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Build.1.0.21/Microsoft.Bcl.Build.1.0.21.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Build.1.0.21/Microsoft.Bcl.Build.1.0.21.nupkg -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Bcl.Build.1.0.21/build/Microsoft.Bcl.Build.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Bcl.Build.1.0.21/build/Microsoft.Bcl.Build.Tasks.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/.signature.p7s -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/Microsoft.Net.Http.2.2.29.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/Microsoft.Net.Http.2.2.29.nupkg -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/Xamarin.iOS10/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/Xamarin.iOS10/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/Xamarin.iOS10/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/Xamarin.iOS10/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/Xamarin.iOS10/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Net.Http.Primitives 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/monoandroid/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/monoandroid/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/monoandroid/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/monoandroid/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/monoandroid/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Net.Http.Primitives 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/monotouch/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/monotouch/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/monotouch/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/monotouch/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/monotouch/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Net.Http.Primitives 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Net.Http.Primitives 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net40/System.Net.Http.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net40/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net40/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net45/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Net.Http.Primitives 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net45/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/net45/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8+wpa81/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8+wpa81/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8+wpa81/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8+wpa81/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8+wpa81/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Net.Http.Primitives 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8+wpa81/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Net.Http.Primitives 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/portable-net45+win8/ensureRedirect.xml -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/sl4-windowsphone71/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/sl4-windowsphone71/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/sl4-windowsphone71/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/sl4-windowsphone71/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/sl4-windowsphone71/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/sl4-windowsphone71/System.Net.Http.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/win8/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Net.Http.Primitives 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Extensions.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Primitives.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Microsoft.Net.Http.2.2.29/lib/wpa81/System.Net.Http.Primitives.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Net.Http.Primitives 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/.signature.p7s -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/Newtonsoft.Json.12.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/Newtonsoft.Json.12.0.1.nupkg -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net20/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net20/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net35/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net35/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net40/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net40/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net45/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/net45/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard1.0/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard1.0/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard1.3/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard1.3/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard2.0/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/netstandard2.0/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okcoin-com/V3-Open-API-SDK/7f2cd22fe31adea7d7967d48e5797335435dd4dd/okcoin-cs-sdk-api/packages/Newtonsoft.Json.12.0.1/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /okcoin-go-sdk-api/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /okcoin-go-sdk-api/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /okcoin-go-sdk-api/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /okcoin-go-sdk-api/.idea/okex-go-sdk-api.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /okcoin-go-sdk-api/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /okcoin-go-sdk-api/general_api.go: -------------------------------------------------------------------------------- 1 | package okex 2 | 3 | /* 4 | OKEX general api 5 | @author Tony Tian 6 | @date 2018-03-17 7 | @version 1.0.0 8 | */ 9 | 10 | /* 11 | Time of the server running OKEX's REST API. 12 | */ 13 | func (client *Client) GetServerTime() (ServerTime, error) { 14 | var serverTime ServerTime 15 | _, err := client.Request(GET, OKEX_TIME_URI, nil, &serverTime) 16 | return serverTime, err 17 | } 18 | -------------------------------------------------------------------------------- /okcoin-java-sdk-api/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /okcoin-java-sdk-api/.idea/.name: -------------------------------------------------------------------------------- 1 | okex-java-sdk-api -------------------------------------------------------------------------------- /okcoin-java-sdk-api/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /okcoin-java-sdk-api/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /okcoin-java-sdk-api/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /okcoin-java-sdk-api/src/main/java/com/okcoin/commons/okcoin/open/api/bean/ett/result/EttCancelOrderResult.java: -------------------------------------------------------------------------------- 1 | package com.okcoin.commons.okcoin.open.api.bean.ett.result; 2 | 3 | /** 4 | * @author chuping.cui 5 | * @date 2018/7/5 6 | */ 7 | public class EttCancelOrderResult { 8 | private Boolean result; 9 | } 10 | -------------------------------------------------------------------------------- /okcoin-java-sdk-api/src/main/java/com/okcoin/commons/okcoin/open/api/bean/other/OrderBookItem.java: -------------------------------------------------------------------------------- 1 | package com.okcoin.commons.okcoin.open.api.bean.other; 2 | 3 | import java.math.BigDecimal; 4 | 5 | public interface OrderBookItem { 6 | String getPrice(); 7 | 8 | T getSize(); 9 | } 10 | -------------------------------------------------------------------------------- /okcoin-java-sdk-api/src/main/java/com/okcoin/commons/okcoin/open/api/bean/spot/param/MarginConfigRequestDTO.java: -------------------------------------------------------------------------------- 1 | package com.okcoin.commons.okcoin.open.api.bean.spot.param; 2 | 3 | public class MarginConfigRequestDTO { 4 | private Integer status; 5 | 6 | public Integer getStatus() { 7 | return this.status; 8 | } 9 | 10 | public void setStatus(final Integer status) { 11 | this.status = status; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /okcoin-java-sdk-api/src/main/java/com/okcoin/commons/okcoin/open/api/bean/spot/param/WithdrawalsParamDTO.java: -------------------------------------------------------------------------------- 1 | package com.okcoin.commons.okcoin.open.api.bean.spot.param; 2 | 3 | public class WithdrawalsParamDTO { 4 | } 5 | -------------------------------------------------------------------------------- /okcoin-java-sdk-api/src/main/java/com/okcoin/commons/okcoin/open/api/enums/HttpMethodEnum.java: -------------------------------------------------------------------------------- 1 | package com.okcoin.commons.okcoin.open.api.enums; 2 | 3 | /** 4 | * Http Method Enum 5 | * 6 | * @author Tony Tian 7 | * @version 1.0.0 8 | * @date 2018/3/8 13:53 9 | */ 10 | public enum HttpMethodEnum { 11 | GET, 12 | HEAD, 13 | POST, 14 | PUT, 15 | PATCH, 16 | DELETE, 17 | OPTIONS, 18 | TRACE; 19 | } 20 | -------------------------------------------------------------------------------- /okcoin-java-sdk-api/src/main/java/com/okcoin/commons/okcoin/open/api/websocket/WebSocket.java: -------------------------------------------------------------------------------- 1 | package com.okcoin.commons.okcoin.open.api.websocket; 2 | 3 | public interface WebSocket { 4 | 5 | void connect(); 6 | 7 | void close(); 8 | 9 | void login(String apiKey, String apiSecret, String passphrase); 10 | 11 | void subscribe(String... args); 12 | 13 | void unSubscribe(String... args); 14 | 15 | void sendPing(); 16 | 17 | boolean checkSum(String data); 18 | } 19 | -------------------------------------------------------------------------------- /okcoin-java-sdk-api/src/main/java/com/okcoin/commons/okcoin/open/api/websocket/WebSocketAdapter.java: -------------------------------------------------------------------------------- 1 | package com.okcoin.commons.okcoin.open.api.websocket; 2 | 3 | 4 | public abstract class WebSocketAdapter implements WebSocketListener { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /okcoin-node-sdk-api/.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | end_of_line = lf 7 | indent_size = 2 8 | indent_style = space 9 | insert_final_newline = true 10 | max_line_length = 80 11 | trim_trailing_whitespace = true 12 | 13 | [*.md] 14 | max_line_length = 0 15 | trim_trailing_whitespace = false 16 | -------------------------------------------------------------------------------- /okcoin-node-sdk-api/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Example Contributing Guidelines 2 | 3 | This is an example of GitHub's contributing guidelines file. Check out GitHub's [CONTRIBUTING.md help center article](https://help.github.com/articles/setting-guidelines-for-repository-contributors/) for more information. 4 | -------------------------------------------------------------------------------- /okcoin-node-sdk-api/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | * **I'm submitting a ...** 2 | [ ] bug report 3 | [ ] feature request 4 | [ ] question about the decisions made in the repository 5 | [ ] question about how to use this project 6 | 7 | * **Summary** 8 | 9 | 10 | 11 | * **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. StackOverflow, personal fork, etc.) 12 | -------------------------------------------------------------------------------- /okcoin-node-sdk-api/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | * **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...) 2 | 3 | 4 | 5 | * **What is the current behavior?** (You can also link to an open issue here) 6 | 7 | 8 | 9 | * **What is the new behavior (if this is a feature change)?** 10 | 11 | 12 | 13 | * **Other information**: 14 | -------------------------------------------------------------------------------- /okcoin-node-sdk-api/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | test 3 | tsconfig.json 4 | tsconfig.module.json 5 | tslint.json 6 | .travis.yml 7 | .github 8 | .prettierignore 9 | .vscode 10 | build/docs 11 | **/*.spec.* 12 | coverage 13 | .nyc_output 14 | *.log 15 | -------------------------------------------------------------------------------- /okcoin-node-sdk-api/.prettierignore: -------------------------------------------------------------------------------- 1 | # package.json is formatted by package managers, so we ignore it here 2 | package.json -------------------------------------------------------------------------------- /okcoin-node-sdk-api/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules/typescript/lib" 3 | // "typescript.implementationsCodeLens.enabled": true 4 | // "typescript.referencesCodeLens.enabled": true 5 | } 6 | -------------------------------------------------------------------------------- /okcoin-node-sdk-api/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/PublicClient'; 2 | export * from './lib/AuthenticatedClient'; 3 | export * from './lib/WebsocketClient'; 4 | -------------------------------------------------------------------------------- /okcoin-node-sdk-api/src/lib/PublicClient.spec.ts: -------------------------------------------------------------------------------- 1 | // tslint:disable:no-expression-statement 2 | import test from 'ava'; 3 | 4 | test('getSpotInstruments', async t => { 5 | t.is(true, true); 6 | }); 7 | -------------------------------------------------------------------------------- /okcoin-node-sdk-api/tsconfig.module.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig", 3 | "compilerOptions": { 4 | "target": "esnext", 5 | "outDir": "build/module", 6 | "module": "esnext" 7 | }, 8 | "exclude": [ 9 | "node_modules/**" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /okcoin-php-sdk-api/.idea/dictionaries/hengliu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /okcoin-php-sdk-api/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /okcoin-php-sdk-api/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /okcoin-php-sdk-api/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /okcoin-php-sdk-api/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /okcoin-php-sdk-api/Config.php: -------------------------------------------------------------------------------- 1 | "", 17 | // "apiSecret"=>"", 18 | // "passphrase"=>"", 19 | ]; 20 | -------------------------------------------------------------------------------- /okcoin-php-sdk-api/README.md: -------------------------------------------------------------------------------- 1 | 如何使用? 2 | 3 | 提示:请确保 php 版本在7.2以上 4 | 5 | 第一步:安装依赖 6 | 7 | 1.1 安装依赖composer包 8 | 9 | composer update 10 | 11 | 第二步:配置自己的API key 12 | 13 | 2.1 先去官网申请API Key 14 | 2.2 将各项参数在Config文件中进行替换 15 | 16 | 第三步:调用Rest,在项目根目录下,运行如下命令 17 | 18 | 3.1 调用Rest公共接口 19 | 20 | php rapiDemo.php 21 | 22 | 3.2 调用websocket 23 | 24 | php wsDemo.php start 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /okcoin-php-sdk-api/src/Config.php: -------------------------------------------------------------------------------- 1 | "", 15 | "apiSecret"=>"", 16 | "passphrase"=>"", 17 | ]; 18 | 19 | /** 20 | * @var int 21 | * 0 不debug 22 | * 1 全部debug 23 | * 2 jsut response body 24 | */ 25 | public static $debug=0; 26 | } 27 | -------------------------------------------------------------------------------- /okcoin-python-sdk-api/okcoin/Oracl_api.py: -------------------------------------------------------------------------------- 1 | from .client import Client 2 | from .consts import * 3 | 4 | 5 | class OraclAPI(Client): 6 | def __init__(self, api_key, api_secret_key, passphrase, use_server_time=False): 7 | Client.__init__(self, api_key, api_secret_key, passphrase, use_server_time) 8 | 9 | def get_oracle(self): 10 | return self._request_without_params(GET, ORACLE) -------------------------------------------------------------------------------- /okcoin-python-sdk-api/okcoin/__init__.py: -------------------------------------------------------------------------------- 1 | """An unofficial Python wrapper for the OKEx exchange API v3 2 | 3 | .. moduleauthor:: gx_wind 4 | 5 | """ 6 | -------------------------------------------------------------------------------- /okcoin-python-sdk-api/okcoin/status_api.py: -------------------------------------------------------------------------------- 1 | from .client import Client 2 | from .consts import * 3 | 4 | 5 | class StatusAPI(Client): 6 | def __init__(self, api_key, api_secret_key, passphrase, use_server_time=False): 7 | Client.__init__(self, api_key, api_secret_key, passphrase, use_server_time) 8 | 9 | def get_status(self, status=''): 10 | params = {} 11 | if status: 12 | params['status'] = status 13 | return self._request_with_params(GET, STATUS, params) 14 | --------------------------------------------------------------------------------