How to open a particular Facebook post in Facebook iOS app? - ios

So I get this data from graph search:
https://graph.facebook.com/search?q=watermelon
which has post Id and the user Id. How can I use it to launch the Facebook iOS app and make the app go to that specific post?
The URL schemes from wiki.akosma.com/IPhone_URL_Schemes‎ are not working for this.

Related

share post on facebook using applinks iphone

I am working on a app which has the user feed of posts and I want to post feed post on facebook just like instagram do and if user will clicks on facebook shared post user will redirect to app or appstore, we are not using any post hosting server.
To implement this feature I found this url from facebook and I successfully got the object:
{
"canonical_url": "url",
"id": "643402985734299"
}
here I am facing problem to share my post with this given object please help.
I recommend using a deferred deep linking service like Branch which is free to use. You'll be able to generate links that work from most other apps including Facebook. You can start by implementing the iOS SDK.
In terms of sharing, you should be able to use the Facebook iOS SDK to add functionality for sharing pieces of content directly to Facebook. If you embed a Branch link as the contentURL you'll be able to link to the content in your app regardless of whether the app is installed.
Branch already leverages App Links for you so you do not need to do any specific handling just for Facebook.

Facebook Deep Linking with swift

I want to integrate facebook deep kinking with my application.
I search out for related documents and examples, but could not find.
This link (facebook developers) only describe Handling incoming links , Adding back navigation.
Which I want to find, how to post on facebook using facebook deeplinking.
I also include images in my facebook post , when user click on that image then If my app already installed in device then open app ,not installed then open app store.
First of all, You have to enable Deeplinking From your Facebook App
After setting up your Facebook app, You can share Image on Facebook with Facebook SDK, Facebook Ref:
You can also pass extra parameter for Deep linking with Facebook Graph API Check out similar link, That will help you

Opening the native facebook app to a pre-filled post

I need to open the facebook iOS app with a post pre-filled. Is this something I can do with the facebook url scheme, or do I need to use the facebook SDK?
I'm aware of this:
iOS post to the Facebook app wall
But I'm really interested in a lightweight solution.

Deep Linking to user profile in facebook iOS App post Graph API v2.0

I'm trying to deep link to user profile in facebook iOS app from my app. For that I need to open the url fb://profile/{profile-id}. However, graph api V2.0 doesn't return the user's original id. I just get the app-scoped-id. Because of this, I'm not able to link to the user profile.
Any idea how to get the profile-id or is there any alternate way to deeplink to the user's (not just the logged in user) profile in the facebook app?

how to post on facebook?

I am developing ios app in which i need to login in social networks. I configured facebook in app i need a posting method using facebook login in my app note i already find a method of posting by login through iphone settings.But i need to post by facebook of my app.
not like this it is using iphone settings i need to hit facebook through my app and post through that login
http://www.gottabemobile.com/2012/10/03/how-to-connect-facebook-to-the-ios-6-notification-center/

Resources