views:

132

answers:

3

Hi

i want to use localhost for developing website facebook application using the graph api. i working in asp.net c#

in the previous api of facebook i was abe to write the http://localhost:4300/ in the connect url at the application settings.

now it dosent work. it keeps telling me An error occurred with application name. Please try again later.

anybody suggestions ?

** if i upload the website, and use the website coonect url, it is working.

A: 

Are you sure that problem is related to DNS name and/or port of your web server? If yes you can use your local IIS instead of webdev server, configure a website yourdomain.com and add an entry to the hosts saying 127.0.0.1 yourdomain.com

Alex Krupnov
A: 

If I understand correctly of what you're trying to do and the application settings are on Facebook's website, Facebook will not be able to connect to your computer with 'localhost'. Get the IP address of your computer and type that into the application settings page.

To find your IP: http://whatismyipaddress.com/

Joel Kennedy
A: 

You have to create a ssh tunnel FROM develop server TO your localhost computer. Each request to dev server will be processed by your computer and send back.

Stefano Caravana