Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/232.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php Wufoo-发布到表单API-表单can';我不接受新条目_Php_Forms_Wufoo - Fatal编程技术网

Php Wufoo-发布到表单API-表单can';我不接受新条目

Php Wufoo-发布到表单API-表单can';我不接受新条目,php,forms,wufoo,Php,Forms,Wufoo,我正在使用Wufoo表单api发布到我帐户上的表单,但尽管遵循了以下文档,我还是遇到了此错误: 此表单不能接受新条目。请告知表单所有者,以便他们联系Wufoo支持部门 到目前为止,已满足以下要求: 使用正确的子域和表单标识符 使用版本3 Response=JSON 使用API密钥和密码使用的基本身份验证 将参数作为数组发送“FieldID”=>“Value” 表格公开 密码保护我的表单 但是我仍然会遇到这个错误,文档中还有什么遗漏吗?我也对这个问题感到非常失望。。似乎只要你给出API表单ID

我正在使用Wufoo表单api发布到我帐户上的表单,但尽管遵循了以下文档,我还是遇到了此错误:

此表单不能接受新条目。请告知表单所有者,以便他们联系Wufoo支持部门

到目前为止,已满足以下要求:

  • 使用正确的子域和表单标识符
  • 使用版本3
  • Response=JSON
  • 使用API密钥和密码使用的基本身份验证
  • 将参数作为数组发送“FieldID”=>“Value”
  • 表格公开
  • 密码保护我的表单

但是我仍然会遇到这个错误,文档中还有什么遗漏吗?

我也对这个问题感到非常失望。。似乎只要你给出API表单ID,就会给出响应,而不是简单地将它们合并到一个字段中(至少对我来说是这样)

我有一个电话号码字段,wuFoo将其拆分为3个参数:

<li id="foli4" class="phone notranslate">
    <label class="desc" id="title4" for="Field4">
        Phone Number
    </label>
    <span>
        <input id="Field4" name="Field4" type="tel" class="field text" value="" size="3" maxlength="3" tabindex="4"/>
        <label for="Field4">###</label>
    </span>
    <span class="symbol">-</span>
    <span>
        <input id="Field4-1" name="Field4-1" type="tel" class="field text" value="" size="3" maxlength="3" tabindex="5" />
        <label for="Field4-1">###</label>
    </span>
    <span class="symbol">-</span>
    <span>
        <input id="Field4-2" name="Field4-2" type="tel" class="field text" value="" size="4" maxlength="4" tabindex="6" />
        <label for="Field4-2">####</label>
    </span>
</li>
然而,当我发送此邮件时:

Field4=5555
在我的帖子正文中,表单提交成功

看起来,尽管WuFoo将其表单的一部分拆分为几个组件,但它希望将响应连接在一起,否则它会崩溃。

希望这能帮助所有在WufooAPI中挣扎的人

{"Success":0,"ErrorText":"This form can't accept new entries. Please inform the owner of the form so they can contact Wufoo Support.","FieldErrors":[]}