Long tRandomQuestionID = getRandomQuestionID();
if (tRandomQuestionID == null) return; // this means there are no questions in the datastore
Objectify tObjectify = ObjectifyService.begin();
HangmanQuestion tQuestion = tObjectify.get( HangmanQuestion.class, tRandomQuestionID );
HangmanPlurkQuestion tPlurkQuestion = new HangmanPlurkQuestion( 0, tQuestion.SENTENCE, tQuestion.HINT, tQuestion.EXTRAS );
JSONObject tAddResponse = PlurkService.getInstance().plurkAdd( getQuestionSentence( tPlurkQuestion ), Qualifier.ASKS );
tPlurkQuestion.PLURK_ID = tAddResponse.getLong( "plurk_id" );