105

In my Facebook account, where can I find these application IDs, secret key, all?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Bharanikumar
  • 25,457
  • 50
  • 131
  • 201

9 Answers9

96

You should use the Developer App.

On the right is a section titled "My Applications" from which you can select an application to see its information.

You can also go straight here as well, which will list your apps on the left.

Gh61
  • 9,222
  • 4
  • 28
  • 39
Peter Bailey
  • 105,256
  • 31
  • 182
  • 206
  • 1
    That url asks for a password, my normal account password doesn't work. Do you have to sign up for something else? – Neros Feb 02 '12 at 06:36
  • 1
    Nevermind it seems chrome was having trouble getting past that page, in Firefox the page actualy works when you input your password. – Neros Feb 02 '12 at 06:50
  • 2
    **One important thing...** You have to be logged into your **personal account** not business account when following these directions. – user2779151 Sep 14 '13 at 12:11
  • You must be logged in as an administrator of the app for this to work. – Timo Huovinen Jan 15 '14 at 09:33
74

From 2018:

Go to Settings -> Basic -> App Secret (type your password and you're ready to go).

vljs
  • 978
  • 7
  • 15
  • 1
    The full path is: (1) https://developers.facebook.com/ (2) My Apps > [select your app] (3) on the left underneath Dashboard, click on Settings (4) and then what @vljs said – MrColes Dec 14 '18 at 17:05
15

I had a hard time finding where it is so here the image depicting it in 2019.  the location of app secret and app id in 2019.

Black Mamba
  • 13,632
  • 6
  • 82
  • 105
7

Just simply click on your app name and look on your right, you app id should be there

For your app secret, u have to click show.

enter image description here

Hope that helps !

code-8
  • 54,650
  • 106
  • 352
  • 604
4

Make a Facebook app with these simple steps I have written below:

  1. Go to Developer tab and click on it.
  2. Then go to Website Option.
  3. Enter the app name which you have want.
  4. Click on Create Facebook App.
  5. After this you have to choose category, you can choose App for Pages.
  6. Your AppId and Appkey is created automatically. The AppSecretKey is obfuscated. You can click on the show button to see your AppId and AppSecurityKey.
filoxo
  • 8,132
  • 3
  • 33
  • 38
DKR
  • 5,426
  • 1
  • 19
  • 21
2

Peter's post is pretty much spot on, but if you want to learn how to navigate to it yourself here are the instructions:

On the left hand menu, you need to click "more", then you'll see "Developer", click on it. Afterwards you'll be presented with a page where your apps are listed under "My Applications" click on "See my applications". You can find all your API Key, secrets, and IDs there.

1

It is under Account -> Application Settings, click on your application's profile, then go to Edit Application.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Puaka
  • 1,751
  • 13
  • 8
  • in the above steps and not find any edit applicaiton option,,, – Bharanikumar Jul 08 '10 at 13:16
  • huh ? it was there for my created apps. for every apps listed in application settings, the should be 2 links, Edit Settings and Profile, the Edit Application is after you clicked on Profile link, unless you do not have the rights to edit the app – Puaka Jul 08 '10 at 13:29
  • gOT ERROR Fatal error: Uncaught CurlException: 60: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed thrown in E:\wamp\www\facebook-php-sdk-71d9a52\src\facebook.php on line 511 – Bharanikumar Jul 08 '10 at 13:35
  • i see.. you're using the API right ? you need to add these CURL options in facebook.php CURLOPT_SSL_VERIFYPEER => false its under public static $CURL_OPTS... find it – Puaka Jul 08 '10 at 13:50
  • i added the that snippet ' public static $CURL_OPTS = array( CURLOPT_CONNECTTIMEOUT => 10, CURLOPT_RETURNTRANSFER => true, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_TIMEOUT => 60, CURLOPT_USERAGENT => 'facebook-php-2.0', );' but still i has error Fatal error: Uncaught CurlException: 60: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed thrown in E:\wamp\www\facebook-php-sdk-71d9a52\src\facebook.php on line 511 – Bharanikumar Jul 08 '10 at 13:53
  • not sure which version you are using, but i have 2 versions, 2.0.4 and 2.0.5 both, no need to add the options, its already there, you just need to add 1 extra line. so here is mine : public static $CURL_OPTS = array( CURLOPT_CONNECTTIMEOUT => 10, CURLOPT_RETURNTRANSFER => true, CURLOPT_TIMEOUT => 60, CURLOPT_USERAGENT => 'facebook-php-2.0', CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => 2, ); – Puaka Jul 08 '10 at 14:11
  • @Puaka setting `CURLOPT_SSL_VERIFYPEER` to `false` is more of a bandaid than an actual solution. What you really need to do is tell curl where your crt file is located. `Facebook::$CURL_OPTS[CURLOPT_CAINFO] = '/path/to/ca-bundle.crt'` – Peter Bailey Jul 08 '10 at 17:34
0

Dashboard -> [your app] -> [View Details] -> Settings -> Basic

source

none
  • 193
  • 1
  • 9
0

url https://developers.facebook.com/apps here you'll see all apps listed after that go to Settings then click on Basic then App Secret input then click on show now you can see your app secert key.