Sixfoot Studio
Sixfoot Studio

Reputation: 3011

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 the person came from.

All's good but on the final stage, when the user needs to post their choices to a form, the character cannot be sent because the string is too long.

Is there a way to use a service such as Bitly or TinyURL to send these long string and for them to be "deconstruction" on the other end when the form is sent?

Otherwise, is there another solution to this problem?

Many thanks!

Upvotes: 4

Views: 1662

Answers (2)

Khan
Khan

Reputation: 2982

You should be using POST to pass variables, instead of GET. That way you don't need to worry about sending URL parameters. This is an option in Flash.

Upvotes: 5

Marc
Marc

Reputation: 3560

Are you using Internet Explorer? Because the problem might even be that the maximum URL size is 2083. Otherwise it could also be that the input field is too short (see the maxlength attribute of the input element)

Upvotes: 2

Related Questions