I'd like to create a mobile site for a website where my highschool checks our grades. Effectively, I want to remotely login to the portal, and then go into the sub page where the students grades are and scrape them. This portal does not have an API that I'm aware of. I'm not really sure if this is possible with PHP/JS, and if it is, I'm not really sure how to start.

Anyone that has knowledge for this, can you point me in the right direction. Thanks in advance.

link|improve this question

Painful... you'd basically have to set up a full proxy. Grab a requested page, figure out which bits can be kept and which tossed, etc... As well as the privacy issues involved with your site requiring people to enter their user/pass. – Marc B Mar 8 '11 at 19:44
feedback

1 Answer

up vote 0 down vote accepted

If there's no api, then you can only parse the raw html and try to get an re-design the information that way.

link|improve this answer
That's the idea, ive just never dealt with using a form and submitting it remotely, so that my code has access to the blocked html – willium Mar 8 '11 at 19:46
You submit the form via a http-post. Then I think you will get returned some authentication cookie that you will have to send to server each time you request a protected page. It's not as hard to accomplish as it sounds ;). And get firebug for firefox, this will help you a lot. If you know how to use it, wireshark can also be a big help. – kohlehydrat Mar 8 '11 at 19:51
great. Do you know of any tutorials, examples, or documentation that can further show the steps – willium Mar 8 '11 at 19:55
sry, not for php – kohlehydrat Mar 8 '11 at 19:58
you could search for general information about the way web applicatiosn like one you want to "reimplement" are built. – kohlehydrat Mar 8 '11 at 19:59
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.