测试积点老人 发表于 2022-8-2 13:15:38

关于lua以post方式提交,调用百度ai文字识别的问题

在手机上用Lua做项目需要调用到百度AI的文字识别功能,总时提示:{"error_code":100,"error_msg":"Invalid parameter"},同样的参数与TOKEN在pythone、PHP和postman中测试返回正常相关代码如下:<font size="3" style="font-weight: normal;">require("TSLib")
sz = require("sz")
http = require("szocket.http")

图片路径=userPath().."/res/tt.png"
图片数据=imageBase64(图片路径)
a=[[{"image":"string"}]]
b=string.gsub(a,"string",图片数据)
json = sz.json
ltn12 = require"ltn12"
response_body = {}
post_data = b
staus,code,header = http.request{
url = "https://aip.baidubce.com/rest/2.0/ocr/v1/general_basic?access_token=24.cff58a10b896dbc1224efc7ff6974702.2592000.1661401756.282335-*%22,
method = "POST",
headers =
{
["Content-Type"] = "application/x-www-form-urlencoded",
},
source = ltn12.source.string(post_data),
sink = ltn12.sink.table(response_body),
}
ret =table.concat(response_body)
nLog(ret)</font>总提示“Invalid parameter”,错误代码100,但同样的token我在其他环境中可正常运行。我估计是这POST方法没写对,但网上关于LUA的文章比较少,偶尔几篇也没解释到POST的点子上,特此请教坛上各位,LUA的POST应该怎么写才能正确对接百度AI的文字识别功能。谢谢折腾一晚上还是没搞懂,这post怎么就没把body的数据传过去。lua的post是怎么工作的?

qqq911 发表于 2022-8-3 11:10:11

检查下header的信息

jingzizx 发表于 2022-8-3 15:17:37

报文不对?
页: [1]
查看完整版本: 关于lua以post方式提交,调用百度ai文字识别的问题