下面是我必须通过PHP的curl API推送的帖子数据。我得到int64
,但是使用邮递员API成功推送相同的帖子数据。
发布数据
data not found error
答案 0 :(得分:0)
您可以尝试以下方法:
curl -XPOST 'https://your_url' -H 'Content-Type: application/json' -d '{"your": "JSON"}'
请用真实的URL替换your_url
,用大的JSON数据替换{"your": "JSON"}
。