1

I am trying to create an MVC4 project that is going to read tweets using the streaming api. I am facing a challenge when im an trying to get an appId and appSecret. I am getting this error: "Error The client application failed validation: Not a valid URL format The client application failed validation: Not a valid URL format" when i am specifying my localhost address as my website and callback url. Please help.

This is how i am typing-in my URL http://localhost:50470/ still it does not work. I also tried this https://localhost:50470/

Thank you.

1 Answers1

3

need to put in both the website and the callback URL the same domain value

Ex

Website: http://127.0.0.1

Callback URL: http://127.0.0.1/api

juliangonzalez
  • 4,231
  • 2
  • 37
  • 47