我正在学习邮差,并且有一个简单的shell脚本,我想在后台运行并将其分配给邮递员全局变量。有关如何做到这一点的任何想法?
答案 0 :(得分:0)
不使用全局变量,而是使用环境变量。
Postman中的环境可以导入/导出到简单的json文件,可以通过外部脚本轻松修改。
答案 1 :(得分:0)
邮递员只能触发HTTP请求,因此没有直接的方法可以执行诸如 .sh脚本之类的脚本。 但是您可以运行本地服务器(此处为节点js服务器)并编写节点js脚本以执行 shell脚本或其他可执行文件 现在,逐步进行操作
我有一个PHP脚本可以为我提供令牌。该令牌稍后将在API请求中使用。这个脚本看起来像 像这样保存为 TokenGenerato.php
<?php
require "vendor/autoload.php";
class TokenGeneration {
public $appID= "50A454F3-EE11-4A4C-B708-965BC7640C08";
public $token = NULL;
public function __construct(){
//echo "\n URL: ".$this->url;
$this->token = $this->generateAppToken();
}
function generateAppToken(){
$message = $this->appID."~REQUEST".time();
//echo "\n message: ".$message;
$cryptor = new \RNCryptor\RNCryptor\Encryptor;
$base64Encrypted = $cryptor->encrypt($message, $this->appID);
//echo "\n token: ". $base64Encrypted;
return $base64Encrypted;
}
}
?>
我们将编写 token.php 程序以从 TokenGenerato.php
获取令牌<?php
require "TokenGeneration.php";
$tokengen = new TokenGeneration();
echo $tokengen->token;
?>
我们可以通过
运行此php脚本php token.php
输出:
AwFmHNkA1HdM1VHFadu89nE3xZuKO3pLQ7cHOrCj2x2WZoSt
您可以使用 chile_process模块在节点js中执行shell命令。 Tutorial on child_process
在 token.js 中使用以下代码创建节点js脚本
const http = require('http'), { exec } = require('child_process');
http.createServer((req, res) => {
// Give the path of your bat or exe file
exec('php token.php', (err, stdout, stderr) => {
console.log({ err, stdout, stderr });
if (err) {
return res.writeHead(500).end(JSON.stringify(err));
}
// Output of the script in stdout
return res.writeHead(200).end(stdout);
});
}).listen(8000);
console.log('Server running at http://127.0.0.1:8000/');
下一步,使用以下命令启动节点服务器
节点token.js
首先在邮递员中创建新的API请求,然后选择“预请求脚本”并编写以下代码以在实际的API调用发生之前发送http请求并将响应保存在本地变量中。
pm.variables.set("password", "AwErFEinDqiOvXFx2wVgHvt+Rpo0jdoTH0D0QldS");
console.log("password: ", pm.variables.get("password"));
pm.sendRequest('http://127.0.0.1:8000', (err, response) => {
// This will have the output of your batch file
console.log(response.text());
pm.variables.set("token", response.text());
})
最后,准备标题以使用令牌
token = {{token}}