How to use same Facebook app for different ios application. I'm using facebook graph api 2.0 and i refered Nextpeer document. How to redirect the ios application from the facebook application using a customized URLscheme like fb39877767662comcompanynamegame
Related
I want to implement universal linking in iOS Swift for twitter & Facebook.I tried with native way of creating universal linking file and keep it on our server. This is only working with WhatsApp, Mail and Notes but not working on Facebook, twitter and LinkedIn. I found that Facebook is not allowing to open app from there but why twitter and linkedin is not allowing.
Any Idea ?
Universal Links do not work in Facebook and Twitter. You need to use Facebook App Links and Twitter App Cards. The reason is that these apps can control what URLs they open in and out of the app, so they force you to adhere to their standards to deep link out of their apps.
Currently i am using the Facebook SDK to implement the Facebook login to our native iOS application. For this i am using the native iOS SDK for Facebook. This application is both for mobile and web, so is it possible to integrate Facebook login without using the SDK from application side. I mean authentication done fully through API and server side.
Please have a suggestion.
I referred to a SO link:
Design for Facebook authentication in an iOS app that also accesses a secured web service
Sure! You can always use their API directly, which essentially is the same as they do with the SDK.
Check out the documentation on the following link.
https://developers.facebook.com/docs/facebook-login/manually-build-a-login-flow
I'm making an app with xamarin.iOS using Facebook API to login but I would like to know if my app should make the connection to the Facebook api or should I make a call to my asp net mvc webapi and let my backend make the connection to the Facebook API.
so here are the 2 concept :
mobile communicate directly with facebook api and after send the data to my asp webapi
or mobile request asp webapi then webapi make a request to facebook api
wich concept should I take ?
From mobile user prospective, it is better to use Facebook SDK for iOS in the mobile app so that the experience stays native all the way.
Remember, iOS supports Facebook even without Facebook app installed.
Facebook SDK for iOS takes care of all this.
After you login, you can send your token to the Web API and then use it.
Here are some articles and videos that will help you getting started:
Facebook iOS SDK for Xamarin - Getting started
Video: Login with Facebook in Xamarin Forms
I'm using Facebook iOS SDK 4.0 in my iOS application. I want to integrate Facebook accounts with the user profile of my application. It is used for sharing purpose and I want the integration to be maintained for the user across multiple devices. As remote token cache was deprecated in Facebook iOS SDK 4.4, is it safe that I save the Facebook access token to my server directly through a web service? Is there any method I should follow in saving so? It would be very helpful if you provide some sample code.
I'm developing mobile app for iOS 8 with Firemonkey (just for info) and my app works with Facebook. I did Facebook authorization though browser by specifying email and password. Everything works fine, but now I'd like to auto login to my custom iOS app without specifying email and password, if I already logged in to the native Facebook app.
For example, we have two iOS 8 apps: 1) native Facebook app and 2) my custom app. All apps are logged out of Facebook. I login to native Facebook app, then open my custom app. How can my custom app retrieve access token from native Facebook app for auto login?
I will be grateful for any code example in any programming language.