gpt4 book ai didi

html - Amazon Mechanical Turk 外部提交错误

转载 作者:可可西里 更新时间:2023-11-01 13:31:05 25 4
gpt4 key购买 nike

我正在尝试在 Amazon Mechanical Turk 中实现外部问题。除了不断返回以下错误的 submit 输入外,一切正常:

There was a problem submitting your results for this HIT.

This HIT is still assigned to you. To try this HIT again, click "HITs Assigned To You" in the navigation bar, then click "Continue work on this HIT" for the HIT. If this problem persists, you can contact the Requester for this HIT using the "Contact" link above.

To return this HIT and continue working on other HITs, click the "Return HIT" button.

我已尽我所能使提交任务按钮正常工作,并检查了我可以在 Google 和本网站上找到的所有帖子,但没有任何效果。

这是我网站上提交按钮的代码:

<form name="hitForm" id="hitForm" action="https://workersandbox.mturk.com/mturk/externalSubmit" method="POST">
<input type="hidden" name="assignmentId" value="<?php echo $_REQUEST["assignmentId"]; ?>" />
<input type="hidden" name="hitId" value="<?php echo $_REQUEST["hitId"]; ?>" />
<input type="hidden" name="workerId" value="<?php echo $_REQUEST["workerId"]; ?>" />
<input type="submit" class="btn btn-primary btn-lg active" role="button">
</form>

用户完成提交 HIT 并收到付款的任务后,需要单击表单上的提交按钮。我尝试发送包含更多信息和更少信息的表单,我尝试将(当前正在测试 HIT 的用户的)信息硬编码到表单,我尝试使用用户数据的超链接,我尝试提交来自不同用户、不同计算机、不同网络等的任务。

将不胜感激对此错误的任何帮助。

编辑:

我已经尝试了 Thomas 所说的方法,但我仍然收到相同的错误消息。我的表格现在看起来像这样:

<form name="hitForm" id="hitForm" action="https://workersandbox.mturk.com/mturk/externalSubmit" method="POST">
<input type="hidden" name="assignmentId" value="<?php echo $_COOKIE["PlayerUserName"]; ?>" />
<input type="hidden" name="foo" value="" />
<input type="submit" class="btn btn-primary btn-lg active" role="button">
</form>

是的,我正在研究请求者沙箱,以确保我的整个 HIT 在向常规 Mechanical Turk 开放之前正常工作。

最佳答案

几种可能性:

  1. 您在现场使用这个吗?您使用的外部提交 URL 仅适用于沙盒。对于实时服务器,您必须将 workersandbox 替换为 www
  2. 您不应将 hitIdworkerId 传递回提交 URL。 MTurk 会忽略这些,因此尝试发送它们毫无意义。
  3. 除了assignmentId之外,您还需要再发送一个输入字段,否则提交会失败。例如,一个隐藏的 “foo” 字段就足够了。

关于html - Amazon Mechanical Turk 外部提交错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29969245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com