Toggle navigation
Toggle navigation
This project
Loading...
Sign in
박찬수
/
enjoy_soccer
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Ga Min Cha
2022-06-09 00:42:17 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3d8625ee74b6cae733cacafbb4792b954446bd9c
3d8625ee
1 parent
ffc16320
Update input teamname
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
0 deletions
appfunctions.js
appfunctions.js
View file @
3d8625e
...
...
@@ -68,4 +68,58 @@ function GetTopAssist(season){
if
(
error
)
throw
new
Error
(
error
);
console
.
log
(
body
);
});
}
// 입력: 팀ID, 반환: 경기 일정
function
GetGameSchedule_teamname
(
teamID
){
var
request
=
require
(
"request"
);
var
options
=
{
method
:
'GET'
,
url
:
'https://v3.football.api-sports.io/fixtures'
,
qs
:
{
team
:
teamID
},
headers
:
{
'x-rapidapi-host'
:
'v3.football.api-sports.io'
,
'x-rapidapi-key'
:
'526fc70a2e8b315e9a960ac4b4764191'
}
};
request
(
options
,
function
(
error
,
response
,
body
)
{
if
(
error
)
throw
new
Error
(
error
);
console
.
log
(
body
);
});
}
// 입력: 팀ID, 반환: 소속 선수
function
GetTeamMembers
(
teamID
){
var
request
=
require
(
"request"
);
var
options
=
{
method
:
'GET'
,
url
:
'https://v3.football.api-sports.io/players'
,
qs
:
{
team
:
teamID
},
headers
:
{
'x-rapidapi-host'
:
'v3.football.api-sports.io'
,
'x-rapidapi-key'
:
'526fc70a2e8b315e9a960ac4b4764191'
}
};
request
(
options
,
function
(
error
,
response
,
body
)
{
if
(
error
)
throw
new
Error
(
error
);
console
.
log
(
body
);
})
}
// 입력: 팀ID, 시즌*(필수), 반환: 팀 순위
function
GetTeamStanding
(
teamID
,
season
){
var
request
=
require
(
"request"
);
var
options
=
{
method
:
'GET'
,
url
:
'https://v3.football.api-sports.io/standings'
,
qs
:
{
team
:
teamID
,
season
:
season
},
headers
:
{
'x-rapidapi-host'
:
'v3.football.api-sports.io'
,
'x-rapidapi-key'
:
'526fc70a2e8b315e9a960ac4b4764191'
}
};
request
(
options
,
function
(
error
,
response
,
body
)
{
if
(
error
)
throw
new
Error
(
error
);
console
.
log
(
body
);
});
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment