Quote:
Originally Posted by araevin
Does FF.Net have an api?
|
No (or at least, not that I'm aware of).
Quote:
I'm stumped as to how to pull info from the site.
|
Just use a standard HTTP GET request - that will get you everything you need.
Quote:
I'm curious as to how you guys are doing it are you guys using REST or something similar?
|
Nope, we're just grabbing the same stuff that you'd see if you browse to the site yourself.
Quote:
I'd like to know because Im trying to do so in either c++ or obj-c.
|
Language shouldn't matter - any decent programming language should be able to achieve it. That includes both C++ and Objective C.
Quote:
...so guys any help on how to pull info from the site?
|
Just grab it the same way as everyone else is doing, and then use regex to extract the information. You could also combine that with directly parsing the xml tree if you want to improve performance a little.