Closed anguslockhart closed 7 years ago
Here is the html template I am filling with german articles
<!DOCTYPE html>
--
<html>
<head>
<meta http-equiv='Content-Type' content='text/html;charset=utf-8'/>
<title>Example Categorization Task</title>
<script type='text/javascript' src='https://s3.amazonaws.com/mturk-public/externalHIT_v1.js'></script>
</head>
<body>
<form name='mturk_form' method='post' id='mturk_form' action='https://www.mturk.com/mturk/externalSubmit'>
<input type='hidden' value='' name='assignmentId' id='assignmentId'/>
<h1>What is this article about?</h1>
<p>${text}</p>
<p>What is this article about? Please read it carefully and determine what political issue the article is discussing.</p>
<p>
<input type="radio" name="QuestionId1" value="economic" id="q1a" /><label for="q1a">Economic Issues</label><br />
<input type="radio" name="QuestionId1" value="sociall" id="q1b" /><label for="q1b">Social Issues</label><br />
<input type="radio" name="QuestionId1" value="foreign" id="q1c" /><label for="q1c">Foreign Policy</label><br />
<input type="radio" name="QuestionId1" value="character" id="q1d" /><label for="q1d">Issues of Character</label><br />
<input type="radio" name="QuestionId1" value="something else" id="q1e" /><label for="q1e">Something else</label>
</p>
<p><input type='submit' id='submitButton' value='Submit' /></p></form>
<script>turkSetAssignmentID();</script>
</body>
</html>
Can you show the R code you're using to create the HIT, as well?
Oh sorry I actually solved this before going to bed last night. It appears that you can't send certain symbols as part of your question. In the error they appear as "â??" but in the actual text I am sending they include "–", "„", " ". If anyone encounters this issue in the future, email me at lockhartg@shaw.ca for a full list of the characters I have found that caused this error.
Hi all,
I am getting the following error
And I am really unsure why. I'm a bit out of my depths on this one but I suspect it has to do with the encoding and particularly the coding of certain German characters, but no matter how hard I try to remove those nothing seems to be helping. I can provide a small sample of the data if needed.
Angus