Show my iphone application in Facebook - iphone

i want make possible to post on facebook page a description of my app.
I've tried ShareKit, but after registering an app on facebook and insert the key and the secret in config file of SHK, i don't have what i want.
How can i give to user the chance to advertise my app on facebook?

Use facebook graph api ..you can postFeed from this api and also give itunes link of your app and description

Related

Linking the app store facebook like to the official app page

Is there a way to associate the Facebook like feature in the app store to a specific Facebook page?

Can Facebook SDK allow for iOS app (linked with a facebook app) to post directly to a particular page?

I am trying to make an iOS app integrated with the Facebook SDK that allows the user to post directly to a facebook group page and receive updates directly from the group page through the app, as an alternative to the facebook app.
I know that the Facebook dialog class in the latest SDK allows us to share a status directly to one's wall but I have yet to find a way to post it to a page other than the user's wall. Is there a way to gain access to a facebook group page and retrieve the posts from the page and also post directly to it?

How to post in facebook fanpage automatically from my website?

How to post in facebook fanpage automatically from my website ?
for example when i update new post in my website and i need to post in facebook fan page automatically....
I believe Facebook offers a certain number of APIs which would allow you to integrate Facebook into your own website to some degree; you can always try their dev centre.As far as I know, however, you can only post to Facebook through social networks like Twitter (see: linking a Twitter account to Facebook), or through Facebook apps you've developed yourself.
You need to create facebook app and use the app secret key and and API key in facebook SDK
script for automatic posting. for more details click the following link. I think this may help you. http://www.damnsemicolon.com/php/auto-post-facebook-with-facebook-sdk

Facebook: How to receive app id for official page?

Can't find anything in settings. The thing is, that i need to auth users on my website and it requires app id.
I have converted profile into facebook official page.
Thanks.
You must register your website to get an application ID:
http://developers.facebook.com/setup/
For more details see:
http://developers.facebook.com/docs/guides/web/#login

Allow non admin users to upload a photo a Facebook Page

I am trying to write a facebook app using Facebook C# sdk 5.1.1. The app should let the users to upload a picture to a Facebook page. I was able to write the app where only the admins of the page are able to upload the picture but not users. Even if the user has liked that page I am not able to do it.
I know its possible because on iPhone or from web site you can visit a page and write something on wall or share a photo. But I am not able to figure out how to do it using Facebook API.
the user of the application needs to grant the publish_stream permissions.
You can then make a call to
https://graph.facebook.com/<page_id>/feed?message=<yourmessage>&picture=<picture_url>&access_token=<access_token>&method=POST.
You can try this first by using the Graph API Explorer
Hope this helps.