Learning is forever
Going where this year?
Udah lama maen twitter, dan baru sekarang butuh url shortener, dan ini url shortner python memanfaatkan Google URL Shortener API. enjoy
import httplib, json conn = httplib.HTTPSConnection('www.googleapis.com') conn.connect(); url = raw_input("masukin urlnya \n") short = '"'+url+'"' body = '{"longUrl": %s}' % short header = {'content-type':'application/json'} conn.request('POST', '/urlshortener/v1/url', body, headers) response = json.loads(conn.getresponse().read()) print (response["id"]) |
You can be the first to comment!