7
votes
3answers
665 views
Python: Convert those TinyURL (bit.ly, tinyurl, ow.ly) to full URLS
I am just learning python and is interested in how this can be accomplished. During the search for the answer, I came across this service: http://www.longurlplease.com
For example:
…
6
votes
3answers
377 views
How to get long URL from short URL?
Using Ruby, how do I convert the short URLs (tinyURL, bitly etc) to the corresponding long URLs?
5
votes
2answers
168 views
Javascript Regex: surround @_____, #_____, and http://______ with anchor tags in one pass?
Related (but slightly different):
http://stackoverflow.com/questions/1216007/surrounding-all-instances-of-and-http-with-a
I would like to surround all instances of @_______, #________, and …
3
votes
5answers
173 views
TinyUrl solutions for intranet portals
I'm currently researching solutions that converts SharePoint's lengthy urls to tiny/clean urls. There seems to be plenty of solutions for public sharepoint portals but I'm looking for an open source …
3
votes
1answer
173 views
How to convert the following ruby code into Rails plugin?
#!/opt/ruby_ee/bin
require 'rubygems'
require 'twitter'
require 'net/http'
require 'uri'
require 'httparty'
module FbTweet
def FbTweet.tweet(url)
bitly_url = Bitly.shorten(url)
httpauth …
3
votes
2answers
267 views
Is there an expiry on bit.ly or tinyurl URLs?
Is there an expiry on bit.ly or tinyurl shortened URLs?
I'm asking because I'm thinking of persisting these shortened urls into the db for a client's twitter service.
UPDATE: if you keep sending …
2
votes
4answers
333 views
How to use jQuery click event to change href value asyncronously, based on a JSON query
I'm using the bit.ly url shortening service to shorten certain url's being sent to a "share on twitter" function. I'd like to load the bit.ly url only when a user actually presses the share button …
2
votes
3answers
101 views
bit.ly - API Stat Tracking
Hello,
I am not sure if this is the correct forum for this question, but I'm not sure where else to ask it.
bit.ly provides stats for links that are generated through their site. However, it does …
2
votes
2answers
75 views
How can I find shortened URLs that link to a specific long URL?
This is the reverse of the usual expanding short URLs question.
For a given Long URL, how can I find which short URLs link to it?
If this needs to go through the APIs of the shorteners, apointers …
1
vote
2answers
62 views
Rails and JSON: a beginner’s question
I'm looking for a simple way to parse JSON, extract a value and write it into a db in Rails.
Explicitly what I'm looking for is a way to extract a shortUrl from the JSON returned from the bit.ly API: …
1
vote
2answers
78 views
jQuery on the fly URL shortener
I'm looking for an on the fly URL shortener much like how tweetdeck works. I have found many jQuery and general javascript plugins that take a url and run it through a shortening service such as …
1
vote
3answers
292 views
How do short URLs services work?
How do services like TinyURL or Metamark work?
Do they simply associate the tiny URL key with a [virtual?] web page which merely provide an "HTTP redirect" to the original URL? or is there more …
1
vote
4answers
184 views
Split Twitter RSS string using Python
Hi, I am trying to parse Twitter RSS feeds and put the information in a sqlite database, using Python. Here's an example:
u'MiamiPete: today\'s "Last Call" is now up http://bit.ly/MGDzu #stocks …
1
vote
4answers
117 views
Determine Final Destination of a Shortened URL in PHP?
Hey,
How can I do this in PHP? e.g.
bit.ly/f00b4r ==> http://www.google.com/search?q=cute+kittens
In Java, the solution is this:
You should issue a HEAD request to
the url using a …
1
vote
3answers
103 views
Do any URL Shortening services with link tracking have a https accessible url?
I have three websites that I want to generate tiny urls for search result pages every time someone clicks search. I like the http://bit.ly api and the fact that it offers tracking. However, it …
