Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Website: Not a valid URL format" when creating an application of twitter

Tags:

I'd like to create an application that can integrate with Twitter. So I went to the website: https://dev.twitter.com/apps/new to create an application.

But the WebSite: field always failed. It said that "Website: Not a valid URL format". I tried different "valid" URLs, but failed.

Do you have any ideas on the twitter application?

Thanks in advance. Michael

like image 768
michael Avatar asked Sep 26 '11 14:09

michael


People also ask

What is website URL in twitter app?

You can view your URL in your account settings. Log in to Twitter's website, click the gear icon and then click "Settings." Your full Twitter URL appears immediately below the Username box in this format: http://twitter.com/[username].

What does it mean when the URL is not valid?

If you receive the error message "Requested URL is not valid", this means that RealPlayer could not understand this web address (URL). RealPlayer can link to a valid web address such as http://www.real.com. If you get this error, try clearing your internet cache and then load the page again.

What is the format of a valid URL?

Most web browsers display the URL of a web page above the page in an address bar. A typical URL could have the form http://www.example.com/index.html , which indicates a protocol ( http ), a hostname ( www.example.com ), and a file name ( index. html ).


1 Answers

I was trying to set localhost URL and got the same error message.

After replacing

http://localhost http://localhost/twitter/callback

with

http://127.0.0.1 http://127.0.0.1/twitter/callback

it let me saved my test application

like image 137
Yuriy Yakubskiy Avatar answered Sep 21 '22 13:09

Yuriy Yakubskiy