Re: using curl/wget to call logout

2016-07-15 Thread Bob
On Friday 15 July 2016 10:28 AM, Jonathan Dowland wrote: On Fri, Jul 15, 2016 at 05:40:40AM +, Bob wrote: I'm trying to use curl to call the logout function of a logout button already working through browser. snip already tried with curl -c my.cookie /home.jsp curl -X GET -c my.cookie /L

Re: using curl/wget to call logout

2016-07-15 Thread Justin Steven
>From Chromium's Development Tools (press F12) you can right-click a request in the Network tab and "Copy as cURL" Might help with handling cookies and other such things using curl -- Justin

Re: using curl/wget to call logout

2016-07-15 Thread Jonathan Dowland
On Fri, Jul 15, 2016 at 05:40:40AM +, Bob wrote: > I'm trying to use curl to call the logout function of a logout button > already working through browser. snip > already tried with > > curl -c my.cookie /home.jsp > curl -X GET -c my.cookie /Login.jsp?message=logout > > but no success. How c

using curl/wget to call logout

2016-07-14 Thread Bob
Hi list, I'm trying to use curl to call the logout function of a logout button already working through browser. After successfully login the page lands at /home.jsp where the logout button is available. Pressing on that button the link redirects to login.jsp?message=logout Investigating the