Re: [SLUG] https from script

2007-11-20 Thread Jamie Wilkinson
This one time, at band camp, Voytek Eymont wrote: On Tue, November 20, 2007 2:29 pm, Erik de Castro Lopo wrote: Voytek Eymont wrote: this works wget --no-check-certificate See the wget manpage. Directly below the information about the --no-check-certificate option is the option you want.

Re: [SLUG] https from script

2007-11-20 Thread Voytek Eymont
On Tue, November 20, 2007 10:37 pm, Jamie Wilkinson wrote: This one time, at band camp, Voytek Eymont wrote: Does wget not work if you have no options? Jamie. thanks nope: --- Connecting to cxcxcxcxcx.com|111.222.33.444|:443... connected. ERROR: Certificate verification error for

[SLUG] https from script

2007-11-19 Thread Voytek Eymont
I need to execute a https url from a script, is wget the go, or is there a better way: this works wget --no-check-certificate https://server.com/sendsms.php?user=mepass=mypswdto=phonetext=Hello world -- Voytek -- SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/

Re: [SLUG] https from script

2007-11-19 Thread Rick Welykochy
Voytek Eymont wrote: I need to execute a https url from a script, is wget the go, or is there a better way: this works wget --no-check-certificate https://server.com/sendsms.php?user=mepass=mypswdto=phonetext=Hello world The other contender might be 'curl'. Both are quite powerful tools.

Re: [SLUG] https from script

2007-11-19 Thread Erik de Castro Lopo
Voytek Eymont wrote: I need to execute a https url from a script, Sorry, that doesn't make sense. Its not possible to execute a http url. What you really mean is retrieve data from a url using https. is wget the go, or is there a better way: this works wget --no-check-certificate See

Re: [SLUG] https from script

2007-11-19 Thread Voytek Eymont
On Tue, November 20, 2007 2:29 pm, Erik de Castro Lopo wrote: Voytek Eymont wrote: this works wget --no-check-certificate See the wget manpage. Directly below the information about the --no-check-certificate option is the option you want. Erik, thanks --certificate=FILE client