001.
002.
003.
004.
005.
006.
007.
008.
strAPI =
"APIキー"
009.
strUSER =
"ユーザー番号"
010.
011.
012.
013.
014.
015.
Set
objHTTP = Wscript.CreateObject(
"MSXML2.XMLHTTP"
)
016.
Set
objHTTPDownload = Wscript.CreateObject(
"MSXML2.XMLHTTP"
)
017.
018.
019.
020.
Set
Stream = Wscript.CreateObject(
"ADODB.Stream"
)
021.
022.
023.
024.
Set
WshShell = WScript.CreateObject(
"WScript.Shell"
)
025.
026.
027.
028.
Set
Fso = CreateObject(
"Scripting.FileSystemObject"
)
029.
030.
031.
032.
033.
034.
Call
ImgDoenload(1,
"日記"
)
035.
Call
Wait60(
"1/6"
)
036.
037.
Call
ImgDoenload(2,
"イラスト"
)
038.
Call
Wait60(
"2/6"
)
039.
040.
Call
ImgDoenload(3,
"企画"
)
041.
Call
Wait60(
"3/6"
)
042.
043.
Call
ImgDoenload(4,
"告知"
)
044.
Call
Wait60(
"4/6"
)
045.
046.
Call
ImgDoenload(5,
"漫画"
)
047.
Call
Wait60(
"5/6"
)
048.
049.
Call
ImgDoenload(99,
"その他"
)
050.
051.
Wscript.Echo
"処理が終了しました"
052.
053.
054.
055.
056.
057.
Function
Wait60(message)
058.
059.
Call
WshShell.Popup(message &
" : 次のAPI実行まで60秒間お待ち下さい(OKはクリックしないで下さい)"
,60)
060.
061.
End
Function
062.
063.
Function
ImgDoenload( strNo, DirPath )
064.
065.
strUrl =
"http://tegaki.pipa.jp/GetBlogList.jsp?AK="
&strAPI&
"&UD="
&strUSER&
"&NM=50&TD="
&strNo
066.
067.
Call
objHTTP.open(
"GET"
,strUrl,
False
)
068.
Call
objHTTP.send( )
069.
Set
xml = objHTTP.responseXML
070.
071.
Set
objList = xml.getElementsByTagName(
"file"
)
072.
length = objList.length
073.
074.
if length <> 0 then
075.
if not Fso.FolderExists( DirPath ) then
076.
Fso.CreateFolder(DirPath)
077.
end if
078.
end if
079.
080.
For
I = 0 to length - 1
081.
082.
083.
strUrlPath1 = objList(I).firstChild.nodeValue
084.
085.
strUrlPath2 = Replace(strUrlPath1,
"_S.jpg"
,
""
)
086.
087.
088.
aPath = Split(strUrlPath2,
"/"
)
089.
strLocalName = aPath(UBound(aPath))
090.
aPath = Split(strUrlPath1,
"/"
)
091.
strLocalNameS = aPath(UBound(aPath))
092.
093.
Call
objHTTPDownload.Open(
"GET"
, strUrlPath2,
False
)
094.
objHTTPDownload.Send
095.
096.
Stream.Open
097.
Stream.Type = 1
098.
Stream.Write objHTTPDownload.responseBody
099.
Stream.SaveToFile DirPath &
"\"
& strLocalName, 2
100.
Stream.Close
101.
102.
Wscript.Sleep 10
103.
104.
Call
objHTTPDownload.Open(
"GET"
, strUrlPath1,
False
)
105.
objHTTPDownload.Send
106.
107.
Stream.Open
108.
Stream.Type = 1
109.
Stream.Write objHTTPDownload.responseBody
110.
Stream.SaveToFile DirPath &
"\"
& strLocalNameS, 2
111.
Stream.Close
112.
113.
Wscript.Sleep 10
114.
115.
Next
116.
117.
End
Function