Skip to content

Instantly share code, notes, and snippets.

@lwe
Created July 2, 2010 15:20
Show Gist options
  • Save lwe/461500 to your computer and use it in GitHub Desktop.
Save lwe/461500 to your computer and use it in GitHub Desktop.

Meine Vorstellung ist, dass ihr grundsätzlich eine API-Methode zur Verfügung stellt um die Spieler + ihre Stats abzuholen, vom iPhone aus rufen wir danach z.B. folgende URL auf:

GET http://www.scb.ch/api/players.json?token=${SHARED_TOKEN}

Dadurch bekommen wir ein JSON Resultat wie bei resp_spieler.js, wichtig ist, dass der Content-Type application/json ist. Das oben erwähnt ${SHARED_TOKEN} ist ein kleiner Hash, denn wir jedes Mal mitsenden, somit können wir grundsätzlich sicherstellen, dass nur unsere iPhone App darauf zugriff hat (und ihr müsst überprüfen ob das Token übereinstimmt). Gut, zugegeben, wenn man will findet man das Token relativ schnell heraus, aber joa, besser als nichts. Ausser, man könnte die Daten via HTTPS abrufen...

Anyway, denke für die Kader-Liste + Spieler-Statistiken sollte dies erst einmal reichen. Wichtig ist einfach, dass ihr einen kleines Script erstellt, welches diese Daten in diesem Format ausgibt...

{
"players": [
{ "name": "Marco Bührer", "position": "goalie", "no": 39, "height": 179, "weight": 82, "birthday": "19790910T0000",
"picture": "http://www.scb.ch/cgi-bin/scb/spieler/2-1.jpg", "statistics": { "spe": 0, "sch": 0, ... } },
...
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment