You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think that the ToodleDo docs are a bit lacking when they recommend escaping the & and ; characters. Because all the data is glued together into a single Get request for this application, and is part of a URL, I think the whole value needs to be URL Encoded.
ie)
public class TextEncoder {
public String encode(String original) {
return java.net.URLEncoder.encode(original, "UTF8");
}
}
The text was updated successfully, but these errors were encountered:
I think that the ToodleDo docs are a bit lacking when they recommend escaping the & and ; characters. Because all the data is glued together into a single Get request for this application, and is part of a URL, I think the whole value needs to be URL Encoded.
ie)
The text was updated successfully, but these errors were encountered: