get auto approved hits from amazon mturk
I am using gem ruby-aws
. I create hits and manually accept or reject the assignments or wait for mturk to auto-approve the hits. Now, I want to get those hits that are auto-approved by amazon mechanical turk. Is there any way I can do it? I hope my question is clear. I checked the Amazon Mturk documentation but could not find anything, am I missing some开发者_开发百科thing here?
HITs aren't auto-approved, only assignments, although the assignment autoapproval is often triggered on consensus being reached within a HIT. It also is triggered after a certain period of time if you haven't manually accepted or rejected an assignment.
If you want to distinguish between assignments you've approved and assignments that were auto-approved by Amazon, you could put something in the RequesterFeedback when you do the approval, e.g. Approved by SG, then ignore those assignments.
Finally, you could check the ApprovalTime and the AutoApprovalTime, and if they are the same, then you know that it was very likely done by Amazon and not by you.
精彩评论