2

我目前正在使用 Zapier 将一些 POST 数据从 TypeForm 发送到 WordPress 网站以创建新用户。

POST 有效,我在脚本中获得了我需要的所有变量,并创建了一个用户。

出于某种原因,尽管 zapier 帐户或 Hurl.it 上的 POST 返回 404 not found 错误。域和脚本都可以访问,目前唯一的问题是客户收到一封电子邮件,说他的 Zap 可能有问题(因为它返回 404)。不过,URL 上的 zap 测试实际上返回了成功。

一切正常,但 zapier 和 hurl.it 都返回 404 not found 错误,这似乎很奇怪?

来自 hurl.it 的请求是:

Accept: */*
Accept-Encoding: gzip, deflate
Content-Length: 117
Content-Type: application/x-www-form-urlencoded
User-Agent: runscope/0.1

来自 hurl.it 的响应是:

Cache-Control: no-cache, must-revalidate, max-age=0
Content-Length: 7
Content-Type: text/html; charset=UTF-8
Date: Fri, 10 Jun 2016 10:57:04 GMT
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Pragma: no-cache
Server: Apache/2.4.7 (Ubuntu)
X-Powered-By: PHP/5.5.9-1ubuntu4.16

任何人有什么想法我可以解决这个问题吗?

非常感谢

4

1 回答 1

2

几周前我解决了这个问题,但我想我只是把它放在这里以防其他人遇到这个问题。

问题似乎出在我需要 wp-blog-header.php 正在监视 $_POST 数据的文件中。现在我很确定这在开始时工作正常,但我通过将要求更改为 wp-load.php 来解决这个问题(我只需要访问几个函数)。

就像我上面所说的,一切仍在使用 wp-blog-header.php 被包含在 zapier 端仅 404ed 并通过电子邮件发送给客户端。wp() 函数或 template-loader.php 文件中一定有什么东西遗漏了导致它。

于 2016-06-27T15:43:31.453 回答