|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Extracting Data from FRC-Spy
Hi everyone,
I want to use the xml data from FRC-Spy to automatically update match results on our team website. My issue is I don't know how to extract the xml data from FRC-Spy. I know you should be able to add "xml=2" to the end of the address to get all the match results in xml, but I can't manage to get the actual information off the website. I'm using php with simple xml. So far this is what I'm having trouble with: PHP Code:
Any suggestions or example code would be great, since I am pretty new to php. Also, if I need to clarify anything, let me know. |
|
#2
|
||||
|
||||
|
Re: Extracting Data from FRC-Spy
The main problem is with your URL. '?xml=2.xml' should just be '?xml=2'.
You can also add '&teams=4096' after the 2 to filter to a specific team. Here's some sample code and a demo that (I think) provides the information you're looking for. Demo - I use team 27, since your team has no results in FRC-Spy yet - http://keatonismy.name/dev/frcspy.php Code: PHP Code:
If you uncomment the print_r line, you'll see the raw XML for your query. Also, unless you're set on coding this from scratch yourself, team 862 has a nice system for retrieving match results with simple configuration. Check out http://lightningrobotics.com/Content...agename=lrmrrs and the CD thread http://www.chiefdelphi.com/forums/sh...d.php?t=104249 |
|
#3
|
||||
|
||||
|
Re: Extracting Data from FRC-Spy
Thank you so much! I figured I made some simple mistake, but that's part of learning.
|
|
#4
|
||||
|
||||
|
Re: Extracting Data from FRC-Spy
Actually, after more digging and debugging, my issue was that I can't directly access external websites on this server (something like that). By using curl, my problem was solved. Thanks for the explanation on how to make FRC-spy filter by team, though.
|
|
#5
|
||||
|
||||
|
Re: Extracting Data from FRC-Spy
Just a heads-up: Before you invest too much time in this, you might want to read these posts: http://www.chiefdelphi.com/forums/sh...5&postcount=58 http://www.chiefdelphi.com/forums/sh...7&postcount=59 |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|