473,382 Members | 1,635 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

php, cURL and javascript

Greetings,

I apologize for my lack of literacy with php, but am wondering if someone
will tell me how to use the curl php functions to navigate to the page that
results from entering the login and password at
https://retire.hartfordlife.com/Hart...ine/login.html and clicking the
"Log In" button please.

My intention is to cron the script so that I can automatically retrieve my
account balance every morning, but the javascript is the only roadblock for
me when using curl alone. http://us2.php.net/manual/en/ref.curl.php implies
that it's possible somehow, but I'm at a loss to figure out the coding on my
own.

Thank you for your help.
Jun 27 '08 #1
7 5050
h.stroph wrote:
Greetings,

I apologize for my lack of literacy with php, but am wondering if someone
will tell me how to use the curl php functions to navigate to the page that
results from entering the login and password at
https://retire.hartfordlife.com/Hart...ine/login.html and clicking the
"Log In" button please.

My intention is to cron the script so that I can automatically retrieve my
account balance every morning, but the javascript is the only roadblock for
me when using curl alone. http://us2.php.net/manual/en/ref.curl.php implies
that it's possible somehow, but I'm at a loss to figure out the coding on my
own.

Thank you for your help.
You might be able to get by the javascript on this page just by posting
the values - not sure, because I haven't looked closely at what the
javascript does. It might work, however.

But the next question is - what about the following page(s)? Do they
require javascript, also?

Have you asked the webmaster how you can do it? They might not care for
what you want to do, among other things (lots of companies don't like
automatic submission like this). Or they may have another way for you
to get the information.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Jun 27 '08 #2
h.stroph wrote:
Greetings,

I apologize for my lack of literacy with php, but am wondering if someone
will tell me how to use the curl php functions to navigate to the page that
results from entering the login and password at
https://retire.hartfordlife.com/Hart...ine/login.html and clicking the
"Log In" button please.

My intention is to cron the script so that I can automatically retrieve my
account balance every morning, but the javascript is the only roadblock for
me when using curl alone. http://us2.php.net/manual/en/ref.curl.php implies
that it's possible somehow, but I'm at a loss to figure out the coding on my
own.

Thank you for your help.

The JavaScript itself do NOTHING but submit the form to itself.
So if I read the code correctly, you need the following variables
to be passed to https://retire.hartfordlife.com/Hart...ine/login.html

The variables needed are:
- 'target' ='MultiRole'
- 'user' =YOUR USERNAME
- 'password' =YOUR PASSWORD

If everything wet fine, **should** cURL should return your "Home Page"
(ie. the page you see when you've successfully logged in)

But as Jerry pointed out, the webmaster might provide an API for you
to access the page programmatically.
Hendri Kurniawan
Jun 27 '08 #3
In news:g2**********@registered.motzarella.org,
Jerry Stuckle <js*******@attglobal.nettyped:
>I apologize for my lack of literacy with php, but am wondering if
someone will tell me how to use the curl php functions to navigate
to the page that results from entering the login and password at
https://retire.hartfordlife.com/Hart...ine/login.html and
clicking the "Log In" button please.

My intention is to cron the script so that I can automatically
retrieve my account balance every morning, but the javascript is the
only roadblock for me when using curl alone.
http://us2.php.net/manual/en/ref.curl.php implies that it's possible
somehow, but I'm at a loss to figure out the coding on my own.

You might be able to get by the javascript on this page just by
posting the values - not sure, because I haven't looked closely at
what the javascript does. It might work, however.
A simple posting of the values was of course the very first thing I tried.
The URL was included so that if someone was inclined to help they could see
the details.
But the next question is - what about the following page(s)? Do they
require javascript, also?
No they do not.
Have you asked the webmaster how you can do it?
The web "master" does not respond to such queries, and my question was how
to use the php curl functions to login to the site, something better suited
to the people here who are well-versed in php.
Jun 27 '08 #4
h.stroph wrote:
In news:g2**********@registered.motzarella.org,
Jerry Stuckle <js*******@attglobal.nettyped:
>>I apologize for my lack of literacy with php, but am wondering if
someone will tell me how to use the curl php functions to navigate
to the page that results from entering the login and password at
https://retire.hartfordlife.com/Hart...ine/login.html and
clicking the "Log In" button please.

My intention is to cron the script so that I can automatically
retrieve my account balance every morning, but the javascript is the
only roadblock for me when using curl alone.
http://us2.php.net/manual/en/ref.curl.php implies that it's possible
somehow, but I'm at a loss to figure out the coding on my own.
You might be able to get by the javascript on this page just by
posting the values - not sure, because I haven't looked closely at
what the javascript does. It might work, however.

A simple posting of the values was of course the very first thing I tried.
The URL was included so that if someone was inclined to help they could see
the details.
>But the next question is - what about the following page(s)? Do they
require javascript, also?

No they do not.
>Have you asked the webmaster how you can do it?

The web "master" does not respond to such queries, and my question was how
to use the php curl functions to login to the site, something better suited
to the people here who are well-versed in php.
My point is - if the webmaster doesn't respond to such queries, then
they may not want you automating such actions. They would be entirely
within their rights to lock you out of online access to your account in
that case.

So what happened when you tried to post the correct values?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Jun 27 '08 #5
In news:g3**********@registered.motzarella.org,
Jerry Stuckle <js*******@attglobal.nettyped:
So what happened when you tried to post the correct values?
curl -F user="username" -F password="passwd"
https://retire.hartfordlife.com/Hart...ine/login.html

just returns the same page. Of course the correct user and password were
used.
Jun 27 '08 #6
Greetings, h.stroph.
In reply to Your message dated Tuesday, June 17, 2008, 00:19:53,
>So what happened when you tried to post the correct values?
curl -F user="username" -F password="passwd"
https://retire.hartfordlife.com/Hart...ine/login.html
just returns the same page. Of course the correct user and password were
used.
curl -i ....
Will help you for debugging purposes.
--
Sincerely Yours, AnrDaemon <an*******@freemail.ru>

Jun 27 '08 #7
h.stroph wrote:
In news:g3**********@registered.motzarella.org,
Jerry Stuckle <js*******@attglobal.nettyped:
>So what happened when you tried to post the correct values?

curl -F user="username" -F password="passwd"
https://retire.hartfordlife.com/Hart...ine/login.html

just returns the same page. Of course the correct user and password were
used.
Which shows you're not sending the proper information.

Get the "Live HTTP Headers" plugin for firefox and look at what needs to
be sent. Then try to duplicate it.

Note that the site also uses cookies, so you'll have to handle those,
also. Chances are you'll have to retrieve the login page to get the
cookie, then submit the form. There may be other fields which need to
be posted, also.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Jun 27 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Haluk Durmus | last post by:
Hello I checked out openssl,mm,apr,apr-util,apache 2,curl,libxml and php from cvs. php couse an ERROR I did the following steps:
9
by: Dave Martin | last post by:
I've successfully used CURL to maneuver around and through sites but a new site I've been trying to work with has got me stumped. To retrieve the data I'm trying to get a login is required. If...
9
by: Conrad F | last post by:
Hi, If any Microsoft people are listening.... Are there any plans for the new web language called "Curl" to be supported in .NET (ASP.NET)? I ask as Curl represents the first step to true OO...
2
by: Tom Szabo | last post by:
"Tom Szabo" <tom@intersoft.net.au> wrote in message news:419fe530$1@dnews.tpgi.com.au... > Hi All, > > I have a page and inside the page I have an IFRAME. From the page I like to > change the...
1
by: ynotssor | last post by:
Hello, can someone please tell me the correct way to use "curl" to complete an online form? I am trying to eventually retrieve my account balance via a cron job that will email me the parsed output...
0
by: nfhm2k | last post by:
I've been trying to find a solution to this for quite some time now... I even took a look at existing scripts... Including this one......
1
by: GeoffreyF67 | last post by:
There is a social bookmarking site here: http:// onlywire.com that I'm trying to login and post to via curl. It's using ajax and I haven't been able to figure out how to post to it so far. ...
3
by: adamalton | last post by:
Hi, I am using cURL with php to submit a form to a website and then retrieve the page that comes back. That part is easy. The problem is that the site I am posting the request to displays a...
1
by: Teamwolf | last post by:
Hi, I am currently finishing integration with a third party payment gateway and my own bespoke shopping cart. Currently:- My checkout process page adds all the order and customer data to my...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.