ID:1682576
 
world
Topic(T)
if(T)
world << "This is a test: [T]"


Is it possible to communicate from a browser in the following ways:

1. Via a web browser by typing http://IP:PORT?text (Tried and did not work. Perhaps I am doing something wrong?)

2. Internally by calling browse.
            var url = "?text"
var html = {"
<script type="text/javascript">
window.onload = function() { window.location = "
[url]"; }
</script>
"}

src << browse( html, "window=browser" );
..()


This works. However, the format for the application I am using only allows http:// links. Meaning it has to be http://..., localhost or something. But, localhost does not work. Nor does 127.0.0.1. So, my question is, what would be a way to go about getting this to accept outside queries?
Extra info: The external application is an API and will send me data after successfully completing a form. Meaning it will redirect to my desired link. The thing is, I don't know what my desired link should be.
Are you running DD as a CGI? It looks like the address that you want should be stored in the address var when you do.
Is the external application editable. There are some php -> dm guides that allow you to construct a message, in which you could follow the same concept to construct a topic message.