Is it possible to call native ios Facebook login d

2019-03-13 05:45发布

问题:

We have an ios app that uses native Facebook login just fine.

Then we also have a website (app is basically an optimized client for it) where people can login via Facebook too. When they open our website in mobile safari, they are directed to Facebook pages to authenticate there and it works, but.. it is still far from native and users have to retype credentials they often have in ios already.

So could it be possible to to somehow launch system fb authentication for just a web page (maybe using some clever URL schema?) and get granted token back to web?

回答1:

Difficult way As described here http://aaronparecki.com/articles/2012/07/29/1/oauth2-simplified#mobile-apps you could find URL scheme to trigger the native iOS app for app authorization:

fbauth://authorize?redirect_uri=[redirect_uri]&client_id=[client_id]&response_type=token

But if you call that link it's not possible to have a redirection. You could try to hack that redirection but maybe you could not find a way out.

A secure way to solve that problem is to use a SSO token to authenticate user on your App when he logs in, and next on Safari take a redirection, with a custom url to your APP, that do as bridge to FB App via Token stored in your APP. After FB authentication you can directly redirect user back to your landing page in Safari. As said by @Lego it's an alternative way to direct authenticate that could be made by going deep to custom URL used by FB.



回答2:

No, it is not yet possible to directly authenticate the user via the native Facebook App, but it's possible to authenticate the user using a custom URL scheme which opens your native iOS app which then handles the authentication flow:

  1. The user authenticates natively with your iOS App. You then store the user login (not password) in your app (i.e. using NSUserDefaults).

  2. Then the user opens your web page in Mobile Safari. You redirect the user via a custom url scheme to your app (i.e. using myapp://authenticate). Apple documentation on implementing custom URL schemes: click

  3. Now, if you have an active FB session in your iOS app, you can either directly redirect the user back to your landing page in Mobile Safari, passing the access token via url get parameter or you first re-authenticate the user, displaying a login view with the user name pre-filled, which you have stored in your iOS app before (step 1) and then redirect the user to your landing page, again all depending on session state and your security needs.



回答3:

For opening face book app you can use Custom URL scheme. But i am not sure if u can authenticate user from it. In case if you could also then it will be confined up to the fb account which is already configured on that device app .so better try to use face book api or something



回答4:

I don't get your question exactly but i think as per your question you want to create fb app Login in safari or in your custom web view.

is this perfect ?

as per my knowledge web view is different thing and native app is different thing.

if you are Login in web view then no need to check anything token or other thing because it will give you Logout thing there.

but if you are Login in your application then "developer.facebook.com" will definitely help you.
and yes, you will do most of the thing in your app as native facebook app do.

Hope it help....