Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이나경
/
time_table
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
이나경
2022-06-02 21:45:55 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cb73405d8b0f393cc3e4c6e9e9256d3f046ee83b
cb73405d
1 parent
c1822106
Add subject information(2)
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
인공지능학과.js
인공지능학과.js
0 → 100644
View file @
cb73405
var
request
=
require
(
'request'
);
var
options
=
{
'method'
:
'GET'
,
'url'
:
'https://sugang.khu.ac.kr/core?attribute=lectListJson&lang=ko&loginYn=N&menu=1&p_major=A10628&p_year=2022&p_term=10&initYn=Y'
,
'headers'
:
{
'Cookie'
:
'JSESSIONID=0hka3HzdSAOOvWw17F0W3OixVWW5MKzJg31nZrYU3yjMlmIv7GF9vasjvDsYwTAe.amV1c19kb21haW4vV0hfU3VnYW5nMQ==; WMONID=R84FN19dbP4'
},
formData
:
{
'attribute'
:
'lectListJson'
,
'lang'
:
'ko'
,
'loginYn'
:
'N'
,
'menu'
:
'1'
,
'p_major'
:
'A10628'
,
'p_year'
:
'2022'
,
'p_term'
:
'10'
,
'initYn'
:
'Y'
}
};
request
(
options
,
function
(
error
,
response
)
{
if
(
error
)
throw
new
Error
(
error
);
console
.
log
(
response
.
body
);
});
Please
register
or
login
to post a comment