Search the Community
Showing results for tags 'curl'.
-
I'm trying to build a workflow that gathers information from a website which unfortunately does not have an API. Is it possible using the request method of the PHP Workflow Class to keep a session alive? I'd like to use a request to login, sending the required post fields, and then request another page that requires the previous authentication. Much thanks,
- 1 reply
-
- authentication
- curl
-
(and 2 more)
Tagged with:
-
I have a simple keyword script that parses some arguments in Ruby and then uses `curl` to submit to a url (a Google Form). All works as advertised, including error messages after rescued Exceptions, except that I get no notification from any output in my script that occurs *after* the `curl` command. Examples: # works correctly and echoes notification puts "Completed successfully!" `curl --data #{data} #{url}` # does not echo notification `curl --data #{data} #{url}` puts "Completed successfully!" In the second case, no notification ever gets issued. If I run the script from the command li
- 1 reply
-
- notifications
- ruby
- (and 4 more)
-
OK, I would LIKE to be able to make a workflow to grab my current data useage from my Cable provider's account page. The initial LOGIN page is here: https://myaccount.cogeco.ca/acpub/login/ Now, they are using some sort of authentication to protect users, and I am VERY limited in my knowledge of curl in BASH. As far as I can tell, I need to use curl twice, first to authenticate to one URL, then to login with another url ... perhaps using cookies? Can someone help me out here perhaps?
- 9 replies
-
- auto-login
- login
-
(and 2 more)
Tagged with:
-
I need some help here. Its very frustrating that all the nifty workflows dont work when using proxies. I have narrowed down the problem to curl command used in workflows.php which I think is the one that issues requests to remote locations. I tested out the following command curl --proxy www.proxy.server:proxy_port_number -I https://twitter.com which worked. I am not really familiar with php or python or curl commands/options, so can anyone tell me what changes I should do to the workflows.php file for it to work? Also how do I make sure curl does not use the proxy when I'm at