일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 자바기초
- array
- VARIABLE
- XML
- 정규식
- 이미지세로길이
- sql랭킹
- sql업데이트
- tempDB
- 인젝션
- SPLIT
- asp함수
- instr
- VarType
- JavaScript
- 한글입력체크
- 이미지가로길이
- MSSQL보안
- jdbc driver
- join
- WML
- FileSystemObject
- xmldom
- ERD
- inner join
- update
- sql순위
- javascript 한글입력체크
- wap
- injection
- Today
- Total
3초기억력
축약 URL, 단축 URL 생성 ASP function 본문
제목 : 축약 URL, 단축 URL 생성 ASP function
소스 :
Function getShortUrlBitly(ByVal longUrl, ByRef resultCode, ByRef resultTxt)
Dim Rs
Dim sql
Dim objRoot
Dim requestUrl : requestUrl = "http://api.bit.ly/v3/shorten"
Dim username, apiKey
Dim params
Dim result : result = longUrl
resultCode = "900"
resultTxt = ""
username = "" : apiKey = "" '//값을 넣어야함.
If username <> "" And apiKey <> "" Then
Set objRoot = xmlDoc(xmlHttpSend("GET", _
Null, _
requestUrl, _
"login="& username &"&apiKey="& apiKey &"&longUrl="& Server.URLEncode(longUrl) &"&format=xml" _
))
If Not objRoot Is Nothing Then
With objRoot
resultCode = .selectSingleNode("status_code").Text
resultTxt = .selectSingleNode("status_txt").Text
If resultCode = "200" Then
result = .selectSingleNode("data").selectSingleNode("url").Text
Else
resultCode = statusCode
resultTxt = statusTxt
End If
End With
End If
Set objRoot = Nothing
End If
getShortUrlBitly = result
End Function
내용 :
예제 소스 파일 :
출처 :
'플밍_ASP' 카테고리의 다른 글
도로명, 지번, 신 우편번호 5자리 검색하기. 공공데이터 우편번호 api 사용. (ASP) (0) | 2016.07.29 |
---|---|
실시간 환율 계산법. yahoo(야후) 사용법. 한국(원화) --> 중국(위안화) 계산 (0) | 2016.02.26 |
URL Rewrite (0) | 2015.03.18 |
Using Classic ASP and URL Rewrite for Dynamic SEO Functionality (0) | 2015.03.18 |
ASP SHA256 암호화 (0) | 2015.03.17 |