apiNG-plugin-footballdata is a football-data.org API plugin for apiNG.
- Supported apiNG models:
fbd-team
,fbd-league
,fbd-player
,fbd-fixture
,fbd-table
- This plugin supports the
get-native-data
parameter - This plugin needs an access token
⚠️ - Used promise library: angular-footballdata-api-factory (included in distribution files)
- Demo on plnkr
- INSTALLATION
- Get file
- Include file
- Add dependency
- Add plugin
- ACCESS TOKEN
- Generate your
access_token
- Insert your
access_token
intoaping-config.js
- Generate your
- USAGE
- Models
- Request
Install via either bower, npm, CDN (jsDelivr) or downloaded files:
bower install apiNG-plugin-footballdata --save
npm install aping-plugin-footballdata --save
- use CDN file
- download apiNG-plugin-footballdata.zip
Include aping-plugin-footballdata.min.js
in your apiNG application
<!-- when using bower -->
<script src="bower_components/apiNG-plugin-footballdata/dist/aping-plugin-footballdata.min.js"></script>
<!-- when using npm -->
<script src="node_modules/aping-plugin-footballdata/dist/aping-plugin-footballdata.min.js"></script>
<!-- when using cdn file -->
<script src="//cdn.jsdelivr.net/aping.plugin-footballdata/latest/aping-plugin-footballdata.min.js"></script>
<!-- when using downloaded files -->
<script src="aping-plugin-footballdata.min.js"></script>
Add the module jtt_aping_footballdata
as a dependency to your app module:
angular.module('app', ['jtt_aping', 'jtt_aping_footballdata']);
Add the plugin's directive aping-footballdata="[]"
to your apiNG directive and configure your requests
<aping
template-url="templates/fixture.html"
model="fbd-fixture"
aping-footballdata="[{'leagueId':394, 'matchday':5}]">
</aping>
- Open api.football-data.org/register
- Type in your name, email address and the usage-question
- Receive your
api_key
via email
Create and open js/apiNG/aping-config.js
in your application folder. It should be look like this snippet:
angular.module('jtt_aping').config(['$provide', function ($provide) {
$provide.value("apingDefaultSettings", {
apingApiKeys : {
footballdata: [
{'api_key':'<YOUR_FOOTBALLDATA_API_KEY>'}
],
//...
}
});
}]);
<YOUR_FOOTBALLDATA_API_KEY>
with your footballdata api_key
Supported apiNG models
model | content | support |
---|---|---|
fbd-team |
teams from football-data.org | full |
fbd-league |
leagues from football-data.org | full |
fbd-player |
players from football-data.org | full |
fbd-fixture |
fixtures from football-data.org | full |
fbd-table |
tables from football-data.org | full |
support:
- full: the source platform provides a full list with usable results
- partly: the source platfrom provides just partly usable results
Every apiNG plugin expects an array of requests as html attribute.
| parameter | sample | description | optional |
|----------|---------|---------|---------|---------|
| teamId
| 5
| footballdata-org id of the team | no |
| protocol
| https
| used protocol (http
, https
, auto
) | yes |
Samples:
[{'teamId':'5'}]
[{'teamId':'18'}, {'teamId':'7'}]
parameter | sample | description | optional |
---|---|---|---|
leagueId |
394 |
footballdata-org id of the league | no |
protocol |
https |
used protocol (http , https , auto ) |
yes |
Samples:
[{'leagueId':'394'}]
[{'leagueId':'398'}, {'leagueId':'400'}]
parameter | sample | description | optional |
---|---|---|---|
teamId |
5 |
footballdata-org id of the team | no |
protocol |
https |
used protocol (http , https , auto ) |
yes |
Samples:
[{'teamId':'5'}]
[{'teamId':'18'}, {'teamId':'7'}]
parameter | sample | description | optional |
---|---|---|---|
leagueId |
394 |
footballdata-org id of the league | no |
protocol |
https |
used protocol (http , https , auto ) |
yes |
Samples:
[{'leagueId':'394'}]
[{'leagueId':'398'}, {'leagueId':'400'}]
parameter | sample | description | optional |
---|---|---|---|
year |
2015 |
year of the league. use $CURRENT for the current year |
no |
protocol |
https |
used protocol (http , https , auto ) |
yes |
Samples:
[{'year':'2015'}]
[{'year':'$CURRENT'}, {'year':'2013'}]
parameter | sample | description | optional |
---|---|---|---|
leagueId |
394 |
footballdata-org id of the league | no |
matchday |
3 |
The current/last matchday is taken per default | yes |
protocol |
https |
used protocol (http , https , auto ) |
yes |
Samples:
[{'leagueId':'394', 'matchday':4}]
[{'leagueId':'398'}, {'leagueId':'400'}]
parameter | sample | description | optional |
---|---|---|---|
fixtureId |
131257 |
footballdata-org id of the fixture | no |
protocol |
https |
used protocol (http , https , auto ) |
yes |
Samples:
[{'fixtureId':'131257'}]
[{'fixtureId':'131096'}, {'fixtureId':'131089'}]
parameter | sample | description | optional |
---|---|---|---|
leagueId |
394 |
footballdata-org id of the league | no |
matchday |
3 |
The current/last matchday is taken per default | yes |
timeFrame |
p7 |
The value of the timeFrame argument must start with either 'p' for past or 'n' for next. It is followed by a number in the range 1-99. | yes |
Samples:
[{'leagueId':'394', 'matchday':4}]
[{'leagueId':'398'}, {'leagueId':'400'}]
parameter | sample | description | optional |
---|---|---|---|
timeFrame |
p7 |
The value of the timeFrame argument must start with either 'p' for past or 'n' for next. It is followed by a number in the range 1-99. | no |
protocol |
https |
used protocol (http , https , auto ) |
yes |
Sample:
[{'timeFrame':'p7'}]
parameter | sample | description | optional |
---|---|---|---|
teamId |
394 |
footballdata-org id of the team | no |
timeFrame |
p7 |
The value of the timeFrame argument must start with either 'p' for past or 'n' for next. It is followed by a number in the range 1-99. | yes |
venue |
home |
Valid values: home and away . Default is unset. |
yes |
protocol |
https |
used protocol (http , https , auto ) |
yes |
Samples:
[{'teamId':'5', 'timeFrame':'p8', 'venue':'home'}]
[{'teamId':'18'}, {'teamId':'7'}]
MIT