涂鸦对 "message"in API 电话有何期待?
What is Tuya expecting for the "message"in API calls?
我正在尝试通过 PHP 网络应用程序与 Tuya API 进行交互。
我必须使用用户 ID 对用户进行身份验证并签名才能接收令牌。
主要问题 - 当我生成 SIGN 时,我可以理解我应该在“消息”字段中写的内容。
以下是我用来向 Authorsiation Management 发出请求的代码 API:
$secret = 'secret';
$clientId = 'client';
$url = "https://openapi.tuyaeu.com/v1.0/token?grant_type=1";
$s = strtoupper(hash_hmac("sha256", "Message",$secret));
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$headers = array(
"sign_method: HMAC-SHA256",
"client_id: *MY ID*",
"secret: *MY Secret code*",
"sign:".$s,
"t: " . time()*1000,
"Content-Type: application/json",
);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
//for debug only!
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
$resp = curl_exec($curl);
curl_close($curl);
var_dump($resp);
所以现在我的请求生成“错误符号”答案。
可能是因为我一开始不知道在符号生成代码的“消息”中放什么
已解决:
- 接收令牌,“消息”应该是我的ID + 时间()*1000
- 接收数据,"message" => my id + token (from 1)) + time()*1000
我正在尝试通过 PHP 网络应用程序与 Tuya API 进行交互。
我必须使用用户 ID 对用户进行身份验证并签名才能接收令牌。
主要问题 - 当我生成 SIGN 时,我可以理解我应该在“消息”字段中写的内容。
以下是我用来向 Authorsiation Management 发出请求的代码 API:
$secret = 'secret';
$clientId = 'client';
$url = "https://openapi.tuyaeu.com/v1.0/token?grant_type=1";
$s = strtoupper(hash_hmac("sha256", "Message",$secret));
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$headers = array(
"sign_method: HMAC-SHA256",
"client_id: *MY ID*",
"secret: *MY Secret code*",
"sign:".$s,
"t: " . time()*1000,
"Content-Type: application/json",
);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
//for debug only!
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
$resp = curl_exec($curl);
curl_close($curl);
var_dump($resp);
所以现在我的请求生成“错误符号”答案。 可能是因为我一开始不知道在符号生成代码的“消息”中放什么
已解决:
- 接收令牌,“消息”应该是我的ID + 时间()*1000
- 接收数据,"message" => my id + token (from 1)) + time()*1000