// https://fluxtream.atlassian.net/wiki/display/FLX/BodyTrack+server+APIs#BodyTrackserverAPIs-usersUIDlogrecsLOGRECIDset
// The params are all optional:
// comment=<string> Set the comment field to the provided string
// tags=<list of tags separated by commas> Set the tags for the logrec. Behaves the same as /users/UID/tags/LOGREC_ID/set?tags=<value> other than having a different return value.
// nsfw=<value> If specified, alters the value of the NSFW flag on the logrec and modifies tag list appropriately to either include an "nsfw" tag if value is true, or remove any existing "nsfw" tags if value is false.
ApiKey apiKey = guestService.getApiKey(uid, Connector.getConnector("bodytrack"));
String user_id = guestService.getApiKeyAttribute(apiKey, "user_id");
String bodyTrackUrl = "http://localhost:3000/users/" + user_id + "/logrecs/" + LOGREC_ID + "/set";
Enumeration parameterNames = request.getParameterNames();
Map<String,String> tunneledParameters = new HashMap<String,String>();
while(parameterNames.hasMoreElements()) {