curl_error_code:1
Ta的回复 :C++语言 #include "ocr.h" int main(int argc, char *argv[]) { QApplication a(argc, argv) // 设置APPID/AK/SK std::string app_id = "-----"; std::string api_key = "--------------------"; std::string secret_key = "-------------------------------"; aip::Ocr client(app_id, api_key, secret_key); Json::Value result; static std::string image; aip::get_file_content("C:/1.jpg", &image); result = client.vehicle_license(image, aip::null); // 调用通用文字识别, 图片参数为本地图片 qDebug() << result.toStyledString().c_str(); return a.exec(); } 最后result的Json 就是: { "curl_error_code" : 1 }