Note that there are some explanatory texts on larger screens.

plurals
  1. POAdd arbitrary word to URL?
    text
    copied!<p>So I'm trying to take the source of the gv4me app, and modify it. I have this filter I have to get around, and the way to get past it is to put a certain keyword(lets say it's "foobar") in whatever URL you're trying to access. So I've got the source compiled and such, but I can't figure out how to add this word in properly. So far, adding it to the post doesn't work. These are the URLs that gv4me uses: </p> <pre><code>private static final String rnrURL = "https://www.google.com/voice/m/i/voicemail?p=1000"; private static final String clientLoginURL = "https://www.google.com/accounts/ClientLogin"; private final String callURL = "https://www.google.com/voice/call/connect"; private static final String markReadURL = "https://www.google.com/voice/m/mark?p=1&amp;label=unread&amp;id="; private static final String getMsgsURL = "https://www.google.com/voice/inbox/recent/unread"; private static final String textURL = "https://www.google.com/voice/sms/send"; private static final String replyURL = "https://www.google.com/voice/m/sendsms"; </code></pre> <p>I need to modify each of these URLs so they have "foobar" in them, but still link to the same page. Is this possible?</p> <p>EDIT: Also, if you search for HandlerUI on google, you'll find a plethora of applications(closed and open source) modified to include a user interface for automatically modifying all connection attempts of said applications. However, the creator is fairly difficult to locate, so I was wondering if anyone knew how to do this?</p> <p>EDIT2: It seems that adding a query string variable doesn't seem to work. What I think would most likely work, is to somehow replace www.google.com with foobar.freednsredirectservice.com. Does anyone know of anything similar to this? Something that would allow foobar.freednsredirectservice.com/voice to still work?</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload