[REBOL] Re: Morpheus (was: set-net question. No, TWO questions)
From: brett:codeconscious at: 30-Oct-2001 23:02
Hi
>From reading the source of the http-handler I think the following should
work for you. But I haven't tested it and I'm hoping you have some way to
check that it works. Change the */* to whatever you need. You should be able
to change the user-agent in the same way. Let us know if it works out.
read/custom http-url [ header [Accept: "*/*"] ]
If you wanted to do a post as well you could try
read/custom http-url [
header [Accept: "*/*"]
post {post-data-blah-blah-blah}
]
I hope it helps!
Brett.