• Hi,
    I just installed the Facebook plugin 1.1.10 on WordPress 3.5 and created a Facebook app. When I enter the app id and secret and hit “Save”, the page takes a while to load and it comes back with both fields empty and no error message whatsoever.

    I have chmod’ed 777 the whole facebook directory, however I am only able to connect to the server via SSH.

    If there is no explanation to what is happening, I’d like to know where the credentials are stored so that I can input them manually.

    Thanks!
    A

    http://wordpress.org/extend/plugins/facebook/

Viewing 1 replies (of 1 total)
  • Thread Starter arnaudrg

    (@arnaudrg)

    I have narrowed it down to this problem: I’m unable to get my access token from the server. The following code works from localhost only:

    $app_token_url = "https://graph.facebook.com/oauth/access_token?"
    . "client_id=" . $app_id
    . "&client_secret=" . $app_secret
    . "&grant_type=client_credentials";
    $response = file_get_contents($app_token_url);
    $params = null;
    parse_str($response, $params);
    echo("This app's access token is: " . $params['access_token']);

    The openssl library is enabled.

Viewing 1 replies (of 1 total)

The topic ‘Unable to save app details’ is closed to new replies.