점점 ASP의 입지 및 자료들이 줄게 되어... 개발 기록차 남김..
ASP가 그래도 간단하고 편하긴 하다..
google의 단축주소 api를 사용하려고 했으나, 서비스를 중단할 예정에 FireBase로 이전한다고 함..
FireBase는 함 둘러봤는데 뭐가 뭔지 모르겠음..ㅎㅎ
그냥 간단한.. Bitly 로 잽싸게 결정! 코드는 아래와 같다.
- <%
- Function fnBitlyUrl(longURL)
- token = "bitly에서 발급받은 토큰값"
- url = "https://api-ssl.bitly.com/v3/shorten?access_token="&token&"&longUrl=" & longURL & "&format=txt"
- set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
- xmlhttp.open "GET", url, false
- xmlhttp.send ""
- fnBitlyUrl = xmlhttp.responseText
- set xmlhttp = nothing
- END FUNCTION
- longURL = "http://www.lifebook.com" '변환하고 싶은 주소'
- response.write fnBitlyUrl(longURL)
- %>
적당히 입맛에 맞게 쓰길..
댓글 없음:
댓글 쓰기