Selamlar,
Wordpress temama süperlig güncel puan durumunu koymak istiyorum api-football.com üzerinden denedim ama 2026/27 sezonu için güncel puan durumunu vermiyor bunu nasıl yapabilirim? ücretsiz şekilde?
Süperlig puan durumunu siteme koymak istiyorum
2
●164
- Bugün, 07:07:03Selamlar,
https://footballdata.io/ sitesi üzerinden ücretsiz aylık 2000 istek ile isteğinizi gerçekleştirebilirsiniz.
Örnek PowerShell komudu:
$url = "https://footballdata.io/api/v1/leagues" $headers = @{ "Authorization" = "Bearer YOUR_API_KEY" } $leagueId = "45" # Güncel UEFA Champions League ID'si $standingsUrl = "https://footballdata.io/api/v1/leagues/$leagueId/standings" $standings = Invoke-RestMethod -Uri $standingsUrl -Headers $headers -Method Get $standings | ConvertTo-Json -Depth 10Çıktı:
paste | e7kWXKSgsJ