Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
603 views

Detect destination of shortened, or “tiny” url

I have just scraped a bunch of Google Buzz data, and I want to know which Buzz posts reference the same news articles. The problem is that many of the links in these posts have been modified by URL ...
9
votes
3answers
3k 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
7answers
3k views

How to make unique short URL with Python?

How can I make unique URL in Python a la http://imgur.com/gM19g or http://tumblr.com/xzh3bi25y When using uuid from python I get a very large one. I want something shorter for URLs.
6
votes
4answers
1k views

Using tinyurl.com in a .Net application … possible?

I found the following code to create a tinyurl.com url: http://tinyurl.com/api-create.php?url=http://myurl.com This will automatically create a tinyurl url. Is there a way to do this using code, ...
4
votes
5answers
558 views

Tinyurl API Example - Am i doing it right :D

we use super-long Hashes for the Registration of new Users in our Application. The Problem is that these Hashes break in some Email Clients - making the Links unusable. I tried implementing the ...
3
votes
9answers
585 views

How to generate unguessable “tiny url” based on an id?

I'm interested in creating tiny url like links. My idea was to simply store an incrementing identifier for every long url posted and then convert this id to it's base 36 variant, like the following in ...
3
votes
5answers
715 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
744 views

How to use jQuery to produce TinyURL

I'm trying to build a jQuery function that will allow me to produce a TinyURL from some other link for micro blogging reasons (yes, twitter)... I found this tutorial from James Padolsey, but am not ...
2
votes
4answers
202 views

General url shortener decoder library for PHP

Is there any kind of library for PHP which can decode tinyurl, Goo.gl, bit.ly and other url shortened urls without making CURL requests?
2
votes
3answers
463 views

How does a URL Shortener work? [closed]

I wonder a URL Shortener worsk, like how they extract the text from address bar and map it to correct URL, later redirect it. What programming language do they use? How do they maintain the history of ...
2
votes
2answers
371 views

Long URLs (Bitly and TinyURL)

I'm sitting with a problem where I need to pass more than 2000 characters from my Flash application to an HTML page which reads the information and displays the correct options made in the Flash app ...
1
vote
0answers
85 views

TinyURL JavaScript API triggers an error

I use the TinyURL API in one of my web applications. Until now, it worked fine but, today, an error occurs and I don't know why: I didn't modify my script since September! Below is the code I use: ...
1
vote
1answer
56 views

mod_redirect every request except a.php, b.php and c.php

I have searched Google and looked here but I haven't quite found the answer I am looking for. I am working on a little project and part of it will allow shorturl redirects, similar to bit.ly or ...
1
vote
1answer
643 views

Post an image to facebook from android, link broken because facebook is appending ?ref=nf to url

I've become very frustrated attempting to post a google chart image to the facebook me/feed. The cart image is dynamically created by a potentially very long URL. I'm able to set that URL in the ...
1
vote
1answer
86 views

How do you construct a GUID with a set prefix and zero-padded suffix?

Freebase's Python API uses GUIDs that have a set prefix and a zero-padded suffix: "guid":"#9202a8c04000641f8000000000211f52" (http://wiki.freebase.com/wiki/Guid) "Freebase guids are represented with ...
1
vote
1answer
299 views

bit.ly cname redirects - PHP

I understand how using a full domain with an A record works ($_SERVER['SERVER_NAME']), but when using a subdomain with bit.ly, they ask for it to point to cname.bit.ly - why dont subdomains just get ...
1
vote
3answers
611 views

How does tiny url work

I have been wondering how tiny url works. I would like to develop something similar for my site, but as most people, I use GUIDs for ids. When an object is created, should I then generate a 10 ...
1
vote
3answers
114 views

Trying to create tiny urls, getting redirect loop

I'm trying to create tiny urls like this: site.com/abc123 goes to: site.com/index.php?token=abc123 but I keep getting redirect loops no matter what I try, or it tries to redirect to ...
1
vote
1answer
289 views

Track a short URL generated for a long URL

I'm writing a URL shortener similar to tinyurl and I'm wondering how to keep track of URL's that are already shortened using my service? For example, tinyurl generates the same tiny URL for the same ...
1
vote
5answers
784 views

Create TinyURL via Jquery Ajax call

I've looked through simiilar questions on SO, but can't seem to find one addressing what seems like a simple call.. function TweetThis(url) { $.ajax({ url: ...
1
vote
4answers
313 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 ...
0
votes
0answers
8 views

Finding all tweets which link to a specific domain (including shortlinks)

I'm looking to find all tweets which link to example.com, including all tweets from the major shortlink providers - let's say just bitly, goo.gl, t.co and TinyURL for now (though I'm open to more ...
0
votes
1answer
25 views

Share 301 status code Url's on Facebook

When I am sharing a Url which have 301 status code with Location header but I found that Facebook didn't fetch contents from destination page but when I share url of tinyurl.com facebook fetch all ...
0
votes
1answer
43 views

integrating tiny url with codeigniter

I have PHP code for shortening a URL. I want to integrate it with CodeIgniter. How can I do this? I have 3 pages: index.php, page.php and a .htaccess file and one database backup file. index.php ...
0
votes
3answers
88 views

AS3 - I can't get a string value returned from a function

This is pretty straight forward AS3 code, from a sample somewhere, but, I want to have the value in the string 'location' available to other parts of the main program. It returns fine in the completed ...
0
votes
1answer
127 views

How to get the complete url address most efficiently?

I'm using a java program to get expanded urls from short urls. Given a java URLConnection, among the two approaches, which one is better to get the desired result. ...
0
votes
1answer
53 views

Twitter Status in wordpress and Tiny Url

I have a wordpress site. I have a twitter button below every post. What I want is that when a user clicks on it, it should update their twitter status to the following: ...
0
votes
2answers
174 views

Covert url into tiny url in iphone

I want to programmatically convert a URl to tinyURL in iphone.How to do this? Please help me out.Thanks.
0
votes
1answer
204 views

rails 3 project, how to use tinyurl?

Is anyone aware of how to get inyurls in a ruby 192/rails 3 app? I thought this would be simple... installed the gem 'shorturl' also added it to my Gemfile, did bundle install, and it all looked fine ...
0
votes
1answer
126 views

IIS URL Rewriting/Forwarding Tiny URL

I would like to rewrite/forward an URL on our internal network: request: http://shortcut/74b32 rewriting: http://myserver/Default.aspx?id=74b32 I already have a DNS entry for shortcut that points ...
0
votes
0answers
25 views

What is mangling tinyurls?

I've noticed that some form processors make a mess out of posted TinyURLs (converting the thing to a broken 'tinyurl": "http:\/​\/​tinyurl.com\/​whatever", "ok": tr') while leaving alone other plain ...
0
votes
2answers
1k views

fastest code to generate unique base62 hashes

hey guys i want to generate unique base62 hashes - something similar to what tinyurl and bit.ly do using c#. this would be based on an auto increment field ID of type bigint (like most of these sites) ...
-1
votes
1answer
69 views

I need to match and expand a tiny url with javascript

I need to match and expand a tiny url with javascript: http://t.co/qJEZPFk No luck with text.match(/http:\/\/t\.co.*/i)
-4
votes
2answers
108 views

When tiny url expires ? how to avoid?

I am using tiny url api for shorten urls in my rails application . I am creating tiny url's using tinyurl.com . Q: When these tiny url's expires. Q: How to avoid tiny url expires if tiny url expire. ...