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:24 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c1822106d95e472727fbc269d2d2a523b2944820
c1822106
1 parent
3035280d
Add subject information(1)
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
소프트웨어융합학과.js
소프트웨어융합학과.js
0 → 100644
View file @
c182210
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=A07337&p_year=2022&p_term=10&initYn=Y'
,
'headers'
:
{
'Cookie'
:
'JSESSIONID=aHGSkYnn7ZmXH5Wgx8So3tatw4J7LyR5g98tqYffSUU7qPhC7FFjOaemFCb8UgU5.amV1c19kb21haW4vV0hfU3VnYW5nMQ==; WMONID=R84FN19dbP4'
},
formData
:
{
'attribute'
:
'lectListJson'
,
'lang'
:
'ko'
,
'loginYn'
:
'N'
,
'menu'
:
'1'
,
'p_major'
:
'A07337'
,
'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