IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> 64、ubuntu20.04安装Postman测试http通信和测试其libcurl支持http客户端发送request -> 正文阅读

[开发工具]64、ubuntu20.04安装Postman测试http通信和测试其libcurl支持http客户端发送request

基本思想:需要使用http协议完成业务需求,需要测试一下,所以学习一下想关的应用实践

一、下载Postman Postman

ubuntu@ubuntu:~$ tar-zxvf postman-linux-x64.tar.gz 
ubuntu@ubuntu:~/postman-linux-x64/Postman$ ./Postman 

帐号某宝解决,也可以试用30天

二、固定postman到任务栏图标

ubuntu@ubuntu:~$ sudo gedit /usr/share/applications/Postman.desktop

添加内容

[Desktop Entry]
Type=Application
Name=Postman
GenericName=Postman
Comment=Postman:The Postman IDE
Exec="/home/ubuntu/postman-linux-x64/Postman/Postman" %f
Icon=/home/ubuntu/postman-linux-x64/Postman/app/icons/icon_128x128.png
Terminal=Postman
Categories=Postman

?再次设置一下图标。使用下列命令打开Postman然后用十字光标点击一下postman工具,显示下列字段

ubuntu@ubuntu:~$ xprop |grep WM_CLASS
WM_CLASS(STRING) = "postman", "Postman"
ubuntu@ubuntu:~$ 

重新修正配置文件

[Desktop Entry]
Type=Application
Name=Postman
GenericName=Postman
Comment=Postman:The Postman IDE
Exec="/home/ubuntu/postman-linux-x64/Postman/Postman" %f
Icon=/home/ubuntu/postman-linux-x64/Postman/app/icons/icon_128x128.png
Terminal=Postman
Categories=Postman
StartupWMClass=postman

再次重启Postman就可以添加任务栏,固定住

三、建立postman请求http服务测试,首先需要搭建nginx的http服务器,支持http服务,参考14、Android Studio通过http向C++服务端传递base64图片,然后对图片处理(写入本地)返回数据给Android studio_sxj731533730的博客-CSDN博客_c++ http传图片

发送成功,同时参考它的例子,将其代码抄下来,将https改成http,这样不用ssl支持,就可以在代码中集成使用了

四、系统好像默认支持curl,可以不用编译源码安装或者命令安装,跳过源码安装直接执行下面的事例子代码执行和测试

ubuntu@ubuntu:~$ sudo apt-get install curl

或者源码下载libcurl :curl downloads

ubuntu@ubuntu:~$ wget https://curl.se/download/curl-7.85.0.tar.gz
ubuntu@ubuntu:~$ tar -zxvf curl-7.85.0.tar.gz
ubuntu@ubuntu:~/curl-7.85.0$ ./configure --without-ssl
ubuntu@ubuntu:~/curl-7.85.0$ make
ubuntu@ubuntu:~/curl-7.85.0$ sudo make install

测试代码

cmakelists.txt

cmake_minimum_required(VERSION 3.16)
project(demo_curl)

set(CMAKE_CXX_STANDARD 14)

add_executable(demo_curl main.cpp)
target_link_libraries(demo_curl -lcurl )

源码

#include<stdio.h>
#include<curl/curl.h>
int main(int argc, char *argv[])

{
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
  curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
  curl_easy_setopt(curl, CURLOPT_URL, "192.168.10.26:8334/api/hello");
  curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
  curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "http");
  struct curl_slist *headers = NULL;
  headers = curl_slist_append(headers, "Authorization: Basic dmNoYXdsYTpIZXJlQDExMTE=");
  headers = curl_slist_append(headers, "Content-Type: application/json");
  curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
  const char *data =   const char *data = "{\"praenomen\":\"Gaius\",\"nomen\":\"Julius\",\"cognomen\":\"Caezar\",\"born\":-100,\"died\":-44}";
  curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data);
  res = curl_easy_perform(curl);
    if(res != CURLE_OK)
        fprintf(stderr, "curl_easy_perform() failed: %s\n",
                curl_easy_strerror(res));
    curl_easy_cleanup(curl);
}

    curl_global_cleanup();

return 0;
}

测试结果

/home/ubuntu/demo_curk/cmake-build-debug/demo_curl
{ "result": welcome to httpserver }
Process finished with exit code 0

  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2022-09-24 21:15:37  更:2022-09-24 21:19:03 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 20:53:55-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码