Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

get an app id for facebook?

Tags:

facebook

How do I get an app_id for facebook? I need to use this (http://developers.facebook.com/docs/reference/dialogs/feed/):

http://www.facebook.com/dialog/feed?
app_id=123050457758183&
link=http://developers.facebook.com/docs/reference/dialogs/&
picture=http://fbrell.com/f8.jpg&
name=Facebook%20Dialogs&
caption=Reference%20Documentation&
 description=Dialogs%20provide%20a%20simple,%20consistent%20interface%20for%20applications%20to%20interact%20with%20users.&
message=Facebook%20Dialogs%20are%20so%20easy!&
redirect_uri=http://www.example.com/response

to post some content to a users wall...but I cannot find out where I register to get an app_id. Any ideas?

like image 316
Mike Rifgin Avatar asked Mar 22 '11 11:03

Mike Rifgin


People also ask

Where do I find my app ID?

You can find this in the app's Play Store URL after 'id'. For example, in https://play.google.com/store/apps/details?id=com.company.appname the identifier would be com.

Where can I find my facebook application ID and secret key?

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.

What is a app ID?

An app ID is a unique ID number assigned to your apps when they're added to AdMob. The app ID is used to identify your apps. An ad unit ID is a unique ID number assigned to each of your ad units when they're created in AdMob. The ad unit ID is added to your app's code and used to identify ad requests from the ad unit.


2 Answers

You need to register your app with facebook. See the facebook developer pages for further information.

like image 180
froeschli Avatar answered Oct 03 '22 13:10

froeschli


you must create a facebook app to do that. Have a look at this page: http://developers.facebook.com/docs/guides/canvas/

Once you have created the application you will be given an app id, and an app secret. You can use this secret to verify facebook status for the user, and it must be kept a secret between you and facebook..

Once this is done you can use the javascript library to let the users give your app access to posting to the wall. All of this is documentet on the developers.facebook.com page, however it seems facebook are changing their api raher often and not updating their documentation as frequently...

like image 36
Runar Halse Avatar answered Oct 02 '22 13:10

Runar Halse