Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I registered a .cc domain name (www.kreative.cc). But when I type "kreative.cc" in the App Domains field in the application manager I got an error

Erro There was a problem saving your changes. Please try again later.

I did test other urls and they're all right. I've been trying for a couple of days. What can I do?

share|improve this question

2 Answers

you can use the facebook graph api to write your app settings, seems that facebook is not validating the input this way. here is a simple example in php:

<?php

include 'Zend/Http/Client.php';

$http = new Zend_Http_Client('https://graph.facebook.com/MY_APP_ID');
$http->setMethod('POST');
$http->setParameterPost(array(

        'access_token'                  =>      'MY_APP_ACCESS_TOKEN',
        'app_domains'                   =>      array('mydomain.cc'),
        'website_url'                   =>      'http://mydomain.cc',
        'page_tab_url'                  =>      'http://mydomain.cc',
        'secure_page_tab_url'   =>      'https://mydomain.cc',
));
$response = $http->request()->getBody();
share|improve this answer

I have the same problem. I`m following the Developers Bug Report http://developers.facebook.com/bugs/130468767129410

If you fill App Domain Name with the site IP you'll got success. Ex: http://50.23.134.34 instead of http://www.kreative.cc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.