Posted 07 January 2013 - 12:40 PM
Hello,
I'm making a package manager for my computers that uses raw.github.com as the source, however I currently have an issue with http requests.
When I request a url, instead of getting the expected plain text that I see in notepad or my web browser. I get a string where every character is suffixed or prefixed with a question mark.
Here is an example, https://raw.github.c...master/PACKAGES this path is my package list on my repo.
but when I request it with
I get:
instead of the expected output of
I do have a nice api that handles my repos, but without a working http api, it's useless.
Important information: I'm using the Web Applet, Subversion build: 32
I'm making a package manager for my computers that uses raw.github.com as the source, however I currently have an issue with http requests.
When I request a url, instead of getting the expected plain text that I see in notepad or my web browser. I get a string where every character is suffixed or prefixed with a question mark.
Here is an example, https://raw.github.c...master/PACKAGES this path is my package list on my repo.
but when I request it with
http.get("https://raw.github.com/nevercast/CCNet/master/PACKAGES").readAll()
I get:
y?\?c?l?i?e?n?t?
?
?\?s?e?r?v?e?r?
?
?
instead of the expected output of
\client
\server
I do have a nice api that handles my repos, but without a working http api, it's useless.
Important information: I'm using the Web Applet, Subversion build: 32